Discuss this help topic in SecureBlackbox Forum

TElWebDAVClient.ReadAllProperties

TElWebDAVClient     See also     


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


Retrieves all properties of the specified resource.

Declaration

[C#]
    void ReadAllProperties(string URL, TElWebDAVPropertyInfoList Properties);
    void ReadAllProperties(TElWebDAVStorageObject Obj, TElWebDAVPropertyInfoList Properties);

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

[Pascal]
    procedure ReadAllProperties(const URL : string; Properties : TElWebDAVPropertyInfoList);
    procedure ReadAllProperties(Obj : TElWebDAVStorageObject; Properties : TElWebDAVPropertyInfoList);

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

[PHP]
    void ReadAllProperties(string $URL, TElWebDAVPropertyInfoList $Properties)
    void ReadAllProperties(TElWebDAVStorageObject $Obj, TElWebDAVPropertyInfoList $Properties)

[Java]
    not available

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 get all properties of the specified resource or storage object.

See also:     ReadProperties    

Discuss this help topic in SecureBlackbox Forum