Discuss this help topic in SecureBlackbox Forum

TElWebDAVProperty.OnWriteValue

TElWebDAVProperty     See also     


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


This event is fired when the property value is changed.

Declaration

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

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

[Pascal]
    property OnWriteValue : TSBWebDavPropertyWriteValueEvent;
    TSBWebDavPropertyWriteValueEvent = procedure(Sender : TObject; const URL : string; const NS : string; const Name : string; const 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 - specifies the new value of the property.
  • Success - use this parameter to specify whether to accept or decline the request.

Description

    This event is fired when the new property value is about to be written. It allows to accept or decline the write request.

See also:     Write     OnBeforeWriteValue    

Discuss this help topic in SecureBlackbox Forum