Share via


GenericIdentity.AuthenticationType 속성

정의

사용자를 식별하는 데 사용되는 인증 형식을 가져옵니다.

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

속성 값

String

사용자를 식별하는 데 사용되는 인증 형식입니다.

구현

예제

다음 코드에서는 속성의 사용을 보여 줄 수 있습니다 AuthenticationType . 이 코드 예제는에 대해 제공 된 큰 예제의 일부는 GenericIdentity 클래스입니다.

String^ identityAuthenticationType = genericIdentity->AuthenticationType;
string identityAuthenticationType = 
    genericIdentity.AuthenticationType;
Dim identityAuthenticationType As String
identityAuthenticationType = genericIdentity.AuthenticationType()

적용 대상