Discuss this help topic in SecureBlackbox Forum

TElWinAzureDataStorage.GetObjectACL

TElWinAzureDataStorage     See also     


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


Retrieves ACL (Access Control List) of the data object.

Declaration

[C#]
    string GetObjectACL(string ContainerName, string Name);
    string GetObjectACL(TElWinAzureDataStorageObject Obj);
    string GetObjectACL(string ContainerName, string Name, TElStringList Headers);

[VB.NET]
    Function GetObjectACL(ByVal ContainerName As String, ByVal Name As String) As String
    Function GetObjectACL(ByVal Obj As TElWinAzureDataStorageObject) As String
    Function GetObjectACL(ByVal ContainerName As String, ByVal Name As String, ByVal Headers As TElStringList) As String

[Pascal]
    function GetObjectACL(const ContainerName : string; const Name : string) : string;
    function GetObjectACL(Obj : TElWinAzureDataStorageObject) : string;
    function GetObjectACL(const ContainerName : string; const Name : string; Headers : TStringList) : string;

[C++]
    void GetObjectACL(const std::string &ContainerName, const std::string &Name, std::string &OutResult);
    void GetObjectACL(TElWinAzureDataStorageObject &Obj, std::string &OutResult);
    void GetObjectACL(TElWinAzureDataStorageObject *Obj, std::string &OutResult);
    void GetObjectACL(const std::string &ContainerName, const std::string &Name, TElStringList &Headers, std::string &OutResult);
    void GetObjectACL(const std::string &ContainerName, const std::string &Name, TElStringList *Headers, std::string &OutResult);

[PHP]
    string GetObjectACL(string $ContainerName, string $Name)
    string GetObjectACL(TElWinAzureDataStorageObject $Obj)
    string GetObjectACL(string $ContainerName, string $Name, TElStringList $Headers)

[Java]
    String getObjectACL(String ContainerName, String Name, TElStringList Headers);
    String getObjectACL(String ContainerName, String Name);
    String getObjectACL(TElWinAzureDataStorageObject Obj);

Parameters

  • ContainerName - name of the container with the object.
  • Name - name of the object.
  • Obj - the object for which ACL is requested.
  • Headers - contains HTTP request headers.

Return value

    String that contains ACL for the object.

Description

    Use this method to get the ACL (Access Control List) for the object.

See also:     SetObjectACL    

Discuss this help topic in SecureBlackbox Forum