GenericIdentity.AuthenticationType 屬性
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
取得用來識別使用者的驗證類型。
public:
virtual property System::String ^ AuthenticationType { System::String ^ get(); };
public override string AuthenticationType { get; }
public virtual string AuthenticationType { get; }
member this.AuthenticationType : string
Public Overrides ReadOnly Property AuthenticationType As String
Public Overridable ReadOnly Property AuthenticationType As String
屬性值
用來識別使用者的驗證類型。
實作
範例
下列程式代碼顯示 屬性的使用 AuthenticationType 。 此程式代碼範例是針對 類別提供的較大範例的 GenericIdentity 一部分。
String^ identityAuthenticationType = genericIdentity->AuthenticationType;
string identityAuthenticationType =
genericIdentity.AuthenticationType;
Dim identityAuthenticationType As String
identityAuthenticationType = genericIdentity.AuthenticationType()