Discuss this help topic in SecureBlackbox Forum

TElWebDAVClient.ReadProperty

TElWebDAVClient     See also     


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


Retrieves property info from the server.

Declaration

[C#]
    TElWebDAVPropertyInfo ReadProperty(string URL, string PropName);
    TElWebDAVPropertyInfo ReadProperty(TElWebDAVStorageObject Obj, string PropName);

[VB.NET]
    Function ReadProperty(ByVal URL As String, ByVal PropName As String) As TElWebDAVPropertyInfo
    Function ReadProperty(ByVal Obj As TElWebDAVStorageObject, ByVal PropName As String) As TElWebDAVPropertyInfo

[Pascal]
    function ReadProperty(const URL : string; const PropName : string) : TElWebDAVPropertyInfo;
    function ReadProperty(Obj : TElWebDAVStorageObject; const PropName : string) : TElWebDAVPropertyInfo;

[C++]
    TElWebDAVPropertyInfoHandle ReadProperty(const std::string &URL, const std::string &PropName);
    TElWebDAVPropertyInfoHandle ReadProperty(TElWebDAVStorageObject &Obj, const std::string &PropName);
    TElWebDAVPropertyInfoHandle ReadProperty(TElWebDAVStorageObject *Obj, const std::string &PropName);

[PHP]
    TElWebDAVPropertyInfo ReadProperty(string $URL, string $PropName)
    TElWebDAVPropertyInfo ReadProperty(TElWebDAVStorageObject $Obj, string $PropName)

[Java]
    not available

Parameters

  • URL - URL of the resource which property is needed.
  • PropName - the name of the requested property.
  • Obj - storage object which property is requested.

Description

    Use this method to fetch the specified property of the specified resource or storage object.

See also:     ReadProperties    

Discuss this help topic in SecureBlackbox Forum