Discuss this help topic in SecureBlackbox Forum

TElWebDAVProperty.OnRemove

TElWebDAVProperty     See also     


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


This event is fired when a property is removed.

Declaration

[C#/Java]
    event TSBWebDavPropertyRemoveEvent OnRemove;
    delegate void TSBWebDavPropertyRemoveEvent(object Sender, string URL, string NS, string Name, ref bool Success);

[VB.NET]
    Event OnRemove As TSBWebDavPropertyRemoveEvent
    Delegate Sub TSBWebDavPropertyRemoveEvent(ByVal Sender As Object, ByVal URL As String, ByVal NS As String, ByVal Name As String, ByRef Success As Boolean)

[Pascal]
    property OnRemove : TSBWebDavPropertyRemoveEvent;
    TSBWebDavPropertyRemoveEvent = procedure(Sender : TObject; const URL : string; const NS : string; const Name : string; var Success : boolean) of object;

[C++]
    not available

[PHP]
    not available

Parameters

  • URL - contains the URL of the request.
  • NS - specifies property namespace.
  • Name - specifies property name.
  • Success - use this parameter to specify whether to accept or decline the request.

Description

    This event is fired when the property is requested to be removed from the server.

See also:     Remove    

Discuss this help topic in SecureBlackbox Forum