Discuss this help topic in SecureBlackbox Forum

TElWebDAVClient.ReadProperties

TElWebDAVClient     See also     


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


Fetches property info from the server.

Declaration

[C#/Java]
    void ReadProperties(string URL, TElWebDavPropertyInfoList Properties);
    void ReadProperties(TElWebDAVStorageObject Obj, TElWebDavPropertyInfoList Properties);

[VB.NET]
    Sub ReadProperties(ByVal URL As String, ByVal Properties As TElWebDavPropertyInfoList)
    Sub ReadProperties(ByVal Obj As TElWebDAVStorageObject, ByVal Properties As TElWebDavPropertyInfoList)

[Pascal]
    procedure ReadProperties(const URL : string; const Properties : TElWebDavPropertyInfoList);
    procedure ReadProperties(Obj : TElWebDAVStorageObject; const Properties : TElWebDavPropertyInfoList);

[C++]
    void ReadProperties(const std::string &URL, TElWebDavPropertyInfoList &Properties);
    void ReadProperties(const std::string &URL, TElWebDavPropertyInfoList *Properties);
    void ReadProperties(TElWebDAVStorageObject &Obj, TElWebDavPropertyInfoList &Properties);
    void ReadProperties(TElWebDAVStorageObject *Obj, TElWebDavPropertyInfoList *Properties);

[PHP]
    void ReadProperties(string $URL, TElWebDavPropertyInfoList $Properties)
    void ReadProperties(TElWebDAVStorageObject $Obj, TElWebDavPropertyInfoList $Properties)

Parameters

  • Obj - the object which properties are requested.
  • URL - URL of the object which properties are requested.
  • Properties - this parameter contains property info received from the server.

Description

    Use this method to send PROPFIND request to the server (retrieve the properties of the remote resource).

See also:     ChangeProperties     RemoveProperty     SetProperty    

Discuss this help topic in SecureBlackbox Forum