Discuss this help topic in SecureBlackbox Forum

TElWebDAVProperty.OnRemove

TElWebDAVProperty     See also     


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


This event is fired when a property is removed.

Declaration

[C#]
    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++]
    void get_OnRemove(TSBWebDAVPropertyRemoveEvent &pMethodOutResult, void * &pDataOutResult);
    void set_OnRemove(TSBWebDAVPropertyRemoveEvent pMethodValue, void * pDataValue);
    typedef void (SB_CALLBACK *TSBWebDAVPropertyRemoveEvent)(void * _ObjectData, TObjectHandle Sender, const char * pcURL, int32_t szURL, const char * pcNS, int32_t szNS, const char * pcName, int32_t szName, int8_t &Success);

[PHP]
    TSBWebDAVPropertyRemoveEvent|callable|NULL get_OnRemove()
    void set_OnRemove(TSBWebDAVPropertyRemoveEvent|callable|NULL $Value)
    callable TSBWebDAVPropertyRemoveEvent(TObject $Sender, string $URL, string $NS, string $Name, bool &$Success)

[Java]
    TSBWebDAVPropertyRemoveEvent getOnRemove();
    void setOnRemove(TSBWebDAVPropertyRemoveEvent Value);
    TSBWebDAVPropertyRemoveEvent.Callback OnRemove = new TSBWebDAVPropertyRemoveEvent.Callback() {
        public void TSBWebDAVPropertyRemoveEventCallback(TObject Sender, String URL, String NS, String Name, TSBBoolean Success) {
            //...
        }
    }

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.
  • pcURL - contains the URL of the request.
  • szURL - the length of pcURL.
  • pcNS - specifies property namespace.
  • szNS - the length of pcNS.
  • pcName - specifies property name.
  • szName - the length of pcName.

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