C# 클래스 Microsoft.Identity.Client.UserAssertion

Credential type containing an assertion representing user credential.
파일 보기 프로젝트 열기: AzureAD/microsoft-authentication-library-for-dotnet 1 사용 예제들

공개 메소드들

메소드 설명
UserAssertion ( string assertion ) : System

Constructor to create the object with an assertion. This constructor can be used for On Behalf Of flow which assumes the assertion is a JWT token. For other flows, the other construction with assertionType must be used.

UserAssertion ( string assertion, string assertionType ) : System

Constructor to create credential with client id, assertion and assertionType

UserAssertion ( string assertion, string assertionType, string userName ) : System

Constructor to create credential with client id, assertion, assertionType and userId

메소드 상세

UserAssertion() 공개 메소드

Constructor to create the object with an assertion. This constructor can be used for On Behalf Of flow which assumes the assertion is a JWT token. For other flows, the other construction with assertionType must be used.
public UserAssertion ( string assertion ) : System
assertion string Assertion representing the user.
리턴 System

UserAssertion() 공개 메소드

Constructor to create credential with client id, assertion and assertionType
public UserAssertion ( string assertion, string assertionType ) : System
assertion string Assertion representing the user.
assertionType string Type of the assertion representing the user.
리턴 System

UserAssertion() 공개 메소드

Constructor to create credential with client id, assertion, assertionType and userId
public UserAssertion ( string assertion, string assertionType, string userName ) : System
assertion string Assertion representing the user.
assertionType string Type of the assertion representing the user.
userName string Identity of the user token is requested for. This parameter can be null.
리턴 System