Discuss this help topic in SecureBlackbox Forum

TElWebDAVProperty.Write

TElWebDAVProperty     See also     


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


Assigns a value to the property.

Declaration

[C#]
    bool Write(string URL, string Value);

[VB.NET]
    Function Write(ByVal URL As String, ByVal Value As String) As Boolean

[Pascal]
    function Write(const URL : string; const Value : string) : boolean;

[C++]
    bool Write(const std::string &URL, const std::string &Value);

[PHP]
    bool Write(string $URL, string $Value)

[Java]
    boolean write(String URL, String Value);

Parameters

  • URL - contains the URL of the request.
  • Value - the new value of the property.

Return value

    Returns True on success, and False otherwise.

Description

    Use this method to change the value of the DAV property.

See also:     Read     OnBeforeWriteValue     OnWriteValue    

Discuss this help topic in SecureBlackbox Forum