Discuss this help topic in SecureBlackbox Forum

TElWebDAVProperty.Read

TElWebDAVProperty     See also     


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


retrieves the value of the property.

Declaration

[C#]
    bool Read(string URL, ref string Value);
    bool Read(string URL, ref string Value, TElXMLDOMElement Element, Object Param);

[VB.NET]
    Function Read(ByVal URL As String, ByRef Value As String) As Boolean
    Function Read(ByVal URL As String, ByRef Value As String, ByVal Element As TElXMLDOMElement, ByVal Param As Object) As Boolean

[Pascal]
    function Read(const URL : string; var Value : string) : boolean;
    function Read(const URL : string; var Value : string; Element : TElXMLDOMElement; Param : TObject) : boolean;

[C++]
    bool Read(const std::string &URL, std::string &Value);
    bool Read(const std::string &URL, std::string &Value, TElXMLDOMElement &Element, TObject &Param);
    bool Read(const std::string &URL, std::string &Value, TElXMLDOMElement *Element, TObject *Param);

[PHP]
    bool Read(string $URL, string &$Value)
    bool Read(string $URL, string &$Value, TElXMLDOMElement $Element, TObject $Param)

[Java]
    boolean read(String URL, TSBString Value, TElXMLDOMElement Element, TObject Param);
    boolean read(String URL, TSBString Value);

Parameters

  • URL - contains the URL of the request.
  • Value - contains the value of the property returned by the server.
  • Element -
  • Param -

Return value

    Returns True on success, and False otherwise.

Description

    Use this method to get the property value from the server.

See also:     OnReadValue     OnAfterReadValue    

Discuss this help topic in SecureBlackbox Forum