Discuss this help topic in SecureBlackbox Forum

TElWebDAVClient.GetAcl

TElWebDAVClient     See also     


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


Retrieves ACL for a remote resource.

Declaration

[C#]
    void GetAcl(string URL, TElWebDAVACL CurrentAcl);

[VB.NET]
    Sub GetAcl(ByVal URL As String, ByVal CurrentAcl As TElWebDAVACL)

[Pascal]
    procedure GetAcl(const URL : string; CurrentAcl : TElWebDAVACL);

[C++]
    void GetAcl(const std::string &URL, TElWebDAVACL &CurrentAcl);
    void GetAcl(const std::string &URL, TElWebDAVACL *CurrentAcl);

[PHP]
    void GetAcl(string $URL, TElWebDAVACL $CurrentAcl)

[Java]
    not available

Parameters

  • URL - URL of the resource for which ACL is needed.
  • CurrentAcl - pass an initialized TElWebDAVACL object which will be filled with the retrieved ACEs of the resource.

Description

    Use this method to fetch ACL (Access Control List) of a remote resource, as defined in RFC 3744.

See also:     SetAcl    

Discuss this help topic in SecureBlackbox Forum