GenericPrincipal.Identity Property  
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Gets the GenericIdentity of the user represented by the current GenericPrincipal.
public:
 virtual property System::Security::Principal::IIdentity ^ Identity { System::Security::Principal::IIdentity ^ get(); };public override System.Security.Principal.IIdentity Identity { get; }public virtual System.Security.Principal.IIdentity Identity { get; }member this.Identity : System.Security.Principal.IIdentityPublic Overrides ReadOnly Property Identity As IIdentityPublic Overridable ReadOnly Property Identity As IIdentityProperty Value
The GenericIdentity of the user represented by the GenericPrincipal.
Implements
Examples
The following code shows the use of the Identity property. This code example is part of a larger example provided for the GenericPrincipal class.
GenericIdentity^ principalIdentity =
   dynamic_cast<GenericIdentity^>(genericPrincipal->Identity);
GenericIdentity principalIdentity = 
    (GenericIdentity)genericPrincipal.Identity;
Dim principalIdentity As GenericIdentity = _
    CType(genericPrincipal.Identity, GenericIdentity)