Discuss this help topic in SecureBlackbox Forum

TElWebDAVClient.GetSupportedProperties

TElWebDAVClient     


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


Retrieves the supported properties of a remote resource or object.

Declaration

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

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

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

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

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

[Java]
    not available

Parameters

  • URL - the URL of the remote resource.
  • Properties - initialized TElWebDAVPropertyInfoList object which will be filled by the supported properties.
  • Obj - the remote object for which the properties are requested.

Description

    Call this method to fetch a set of properties supported by the remote resource or object.

Discuss this help topic in SecureBlackbox Forum