Discuss this help topic in SecureBlackbox Forum

TElWebDAVProperty.OnAfterReadValue

TElWebDAVProperty     See also     


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


This event is fired after the value of a live property has been retrieved.

Declaration

[C#]
    event TSBWebDAVPropertyAfterReadValueEvent OnAfterReadValue;
    delegate void TSBWebDAVPropertyAfterReadValueEvent(Object Sender, string URL, string NS, string Name, ref string Value, TElXMLDOMElement Element);

[VB.NET]
    Event OnAfterReadValue As TSBWebDAVPropertyAfterReadValueEvent
    Delegate Sub TSBWebDAVPropertyAfterReadValueEvent(ByVal Sender As Object, ByVal URL As String, ByVal NS As String, ByVal Name As String, ByRef Value As String, ByVal Element As TElXMLDOMElement)

[Pascal]
    property OnAfterReadValue : TSBWebDAVPropertyAfterReadValueEvent;
    TSBWebDAVPropertyAfterReadValueEvent = procedure(Sender : TObject; const URL : string; const NS : string; const Name : string; var Value : string; Element : TElXMLDOMElement) of object;

[C++]
    void get_OnAfterReadValue(TSBWebDAVPropertyAfterReadValueEvent &pMethodOutResult, void * &pDataOutResult);
    void set_OnAfterReadValue(TSBWebDAVPropertyAfterReadValueEvent pMethodValue, void * pDataValue);
    typedef void (SB_CALLBACK *TSBWebDAVPropertyAfterReadValueEvent)(void * _ObjectData, TObjectHandle Sender, const char * pcURL, int32_t szURL, const char * pcNS, int32_t szNS, const char * pcName, int32_t szName, char * pcValue, int32_t &szValue, TElXMLDOMElementHandle Element);

[PHP]
    TSBWebDAVPropertyAfterReadValueEvent|callable|NULL get_OnAfterReadValue()
    void set_OnAfterReadValue(TSBWebDAVPropertyAfterReadValueEvent|callable|NULL $Value)
    callable TSBWebDAVPropertyAfterReadValueEvent(TObject $Sender, string $URL, string $NS, string $Name, string &$Value, TElXMLDOMElement $Element)

[Java]
    TSBWebDAVPropertyAfterReadValueEvent getOnAfterReadValue();
    void setOnAfterReadValue(TSBWebDAVPropertyAfterReadValueEvent Value);
    TSBWebDAVPropertyAfterReadValueEvent.Callback OnAfterReadValue = new TSBWebDAVPropertyAfterReadValueEvent.Callback() {
        public void TSBWebDAVPropertyAfterReadValueEventCallback(TObject Sender, String URL, String NS, String Name, TSBString Value, TElXMLDOMElement Element) {
            //...
        }
    }

Parameters

  • URL - contains the URL of the request.
  • NS - specifies property namespace.
  • Name - specifies property name.
  • Value - this parameter contains the property value.
  • 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.
  • pcValue - this parameter contains the property value.
  • szValue - the length of pcValue.
  • Element -

Description

    This event is fired after the value of a live property has been sent to the client.

See also:     OnReadValue    

Discuss this help topic in SecureBlackbox Forum