Discuss this help topic in SecureBlackbox Forum

TElWebDAVClient.ReadSupportedProperties

TElWebDAVClient     See also     


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


Requests a list of properties of the specified resource.

Declaration

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

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

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

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

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

[Java]
    not available

Parameters

  • URL - URL of the requested resource.
  • Properties - the list of properties of the requested resource.
  • Obj - storage object which properties are requested.

Description

    Use this method to fetch a list of properties of a resource or a storage object.

See also:     ReadProperty    

Discuss this help topic in SecureBlackbox Forum