Discuss this help topic in SecureBlackbox Forum

TElWebDAVClient.ReadProperties

TElWebDAVClient     See also     


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


Fetches multiple properties from the server.

Declaration

[C#]
    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; Properties : TElWebDAVPropertyInfoList);
    procedure ReadProperties(Obj : TElWebDAVStorageObject; 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)

[Java]
    void readProperties(TElWebDAVStorageObject Obj, TElWebDAVPropertyInfoList Properties);
    void readProperties(String URL, TElWebDAVPropertyInfoList Properties);

Parameters

  • Obj - the object which properties are requested.
  • URL - URL of the object which properties are requested.
  • Properties - the list of properties which info has to be updated.

Description

    Use this method to retrieve the specified properties of the resource or storage object.

See also:     ChangeProperties     RemoveProperty     SetProperty    

Discuss this help topic in SecureBlackbox Forum