GetObjectAce Method
See Also 
SourceCode.Authorization.Client Namespace > AuthorizationClient Class : GetObjectAce Method



identityName
The name of the identity.
identityType
The SourceCode.Authorization.Interfaces.IdentityType of the identity.
objectID
The object ID.

Glossary Item Box

Gets an authorization object access control entry.

Syntax

Visual Basic (Declaration) 
Public Function GetObjectAce( _
   ByVal identityName As String, _
   ByVal identityType As SourceCode.Authorization.Interfaces.IdentityType, _
   ByVal objectID As Guid _
) As SourceCode.Authorization.Interfaces.IAuthorizationObjectAce
Visual Basic (Usage)Copy Code
Dim instance As AuthorizationClient
Dim identityName As String
Dim identityType As SourceCode.Authorization.Interfaces.IdentityType
Dim objectID As Guid
Dim value As SourceCode.Authorization.Interfaces.IAuthorizationObjectAce
 
value = instance.GetObjectAce(identityName, identityType, objectID)
C# 
public SourceCode.Authorization.Interfaces.IAuthorizationObjectAce GetObjectAce( 
   string identityName,
   SourceCode.Authorization.Interfaces.IdentityType identityType,
   Guid objectID
)
C++/CLI 
public:
SourceCode.Authorization.Interfaces.IAuthorizationObjectAce^ GetObjectAce( 
   String^ identityName,
   SourceCode.Authorization.Interfaces.IdentityType identityType,
   Guid objectID
) 

Parameters

identityName
The name of the identity.
identityType
The SourceCode.Authorization.Interfaces.IdentityType of the identity.
objectID
The object ID.

Return Value

The Authorization object access control entry retrieved.

Requirements

Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also