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



identityName
The name of the identity.
identityType
The SourceCode.Authorization.Interfaces.IdentityType of the identity.
classID

Glossary Item Box

Gets an Authorization class access control entry.

Syntax

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

Parameters

identityName
The name of the identity.
identityType
The SourceCode.Authorization.Interfaces.IdentityType of the identity.
classID

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