[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.