GenericPrincipal.Identity 屬性
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
取得由目前 GenericIdentity 表示之使用者的 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.IIdentity
Public Overrides ReadOnly Property Identity As IIdentity
Public Overridable ReadOnly Property Identity As IIdentity
屬性值
由 GenericIdentity 表示的使用者 GenericPrincipal。
實作
範例
下列程式代碼顯示 屬性的使用 Identity 。 此程式代碼範例是提供給 類別之較大範例的 GenericPrincipal 一部分。
GenericIdentity^ principalIdentity =
dynamic_cast<GenericIdentity^>(genericPrincipal->Identity);
GenericIdentity principalIdentity =
(GenericIdentity)genericPrincipal.Identity;
Dim principalIdentity As GenericIdentity = _
CType(genericPrincipal.Identity, GenericIdentity)