GetClass(Guid) Method
See Also 
SourceCode.Authorization.Client Namespace > AuthorizationClient Class > GetClass Method : GetClass(Guid) Method



classID
The ID of the class to retrieve.

Glossary Item Box

Gets the SourceCode.Authorization.Interfaces.IAuthorizationClass instance specified by classID.

Syntax

Visual Basic (Declaration) 
Public Overloads Function GetClass( _
   ByVal classID As Guid _
) As SourceCode.Authorization.Interfaces.IAuthorizationClass
Visual Basic (Usage)Copy Code
Dim instance As AuthorizationClient
Dim classID As Guid
Dim value As SourceCode.Authorization.Interfaces.IAuthorizationClass
 
value = instance.GetClass(classID)
C# 
public SourceCode.Authorization.Interfaces.IAuthorizationClass GetClass( 
   Guid classID
)
C++/CLI 
public:
SourceCode.Authorization.Interfaces.IAuthorizationClass^ GetClass( 
   Guid classID
) 

Parameters

classID
The ID of the class to retrieve.

Return Value

The SourceCode.Authorization.Interfaces.IAuthorizationClass specified by the classID; otherwise returns null if the SourceCode.Authorization.Interfaces.IAuthorizationClass could not be found.

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