Discuss this help topic in SecureBlackbox Forum

TElWebDAVProperty.OnReadValue

TElWebDAVProperty     See also     


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


This event is fired before the property value is sent to the client.

Declaration

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

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

[Pascal]
    property OnReadValue : TSBWebDavPropertyReadValueEvent;
    TSBWebDavPropertyReadValueEvent = procedure(Sender : TObject; const URL : string; const NS : string; const Name : string; var Value : 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.
  • Value - the value to be sent to the client.
  • Success - use this parameter to specify whether to accept or decline the request.

Description

    This event is fired before the property value is sent to the client. It allows to modify the value that is actually sent to the client.

See also:     Read     OnAfterReadValue    

Discuss this help topic in SecureBlackbox Forum