Discuss this help topic in SecureBlackbox Forum

TElWebDAVProperty.OnDefaultValue

TElWebDAVProperty     See also     


Filter: C#/Java  VB.NET  Pascal  C++  PHP  


This event is fired when the default property value is requested.

Declaration

[C#/Java]
    event TSBWebDavPropertyDefaultValueEvent OnDefaultValue;
    delegate void TSBWebDavPropertyDefaultValueEvent(object Sender, string URL, string NS, string Name, ref string Value);

[VB.NET]
    Event OnDefaultValue As TSBWebDavPropertyDefaultValueEvent
    Delegate Sub TSBWebDavPropertyDefaultValueEvent(ByVal Sender As Object, ByVal URL As String, ByVal NS As String, ByVal Name As String, ByRef Value As String)

[Pascal]
    property OnDefaultValue : TSBWebDavPropertyDefaultValueEvent;
    TSBWebDavPropertyDefaultValueEvent = procedure(Sender : TObject; const URL : string; const NS : string; const Name : string; var Value : string) of object;

[C++]
    not available

[PHP]
    not available

Parameters

  • URL - contains the URL of the request.
  • NS - specifies property namespace.
  • Name - specifies property name.
  • Value - this parameter contains the property value.

Description

    This event allows the application to specify the default value of the DAV property. This value should be returned via the corresponding parameter.

See also:     GetValue     WriteDefault    

Discuss this help topic in SecureBlackbox Forum