C# 클래스 OpenStack.Services.Identity.V2.AuthenticationRequest

상속: ExtensibleJsonObject
파일 보기 프로젝트 열기: crowdy/OpenStack-ConoHa 1 사용 예제들

공개 메소드들

메소드 설명
AuthenticationRequest ( AuthenticationData auth ) : System

Initializes a new instance of the AuthenticationRequest class with the specified authentication data.

The default authentication request places credentials within an auth property in the JSON representation. The following block shows an example representation.

{ "auth" : {AuthenticationData...} }

To specify credentials for a vendor which uses a non-standard form of the request which does not include the authentication credentials within an auth property in the JSON representation of the request, see AuthenticationRequest(AuthenticationData, ImmutableDictionary{string, JToken}).

AuthenticationRequest ( AuthenticationData auth, JToken>.ImmutableDictionary extensionData ) : System

Initializes a new instance of the AuthenticationRequest class with the specified extension data.

The default authentication request places credentials within an auth property in the JSON representation. The following block shows an example representation.

{ "auth" : {AuthenticationData...}, extensionData... }

To specify credentials for a vendor which uses a non-standard form of the request which does not include the authentication credentials within an auth property in the JSON representation of the request, pass for the auth argument and use the extensionData argument to specify the complete set of properties for the authentication request.

비공개 메소드들

메소드 설명
AuthenticationRequest ( ) : System

메소드 상세

AuthenticationRequest() 공개 메소드

Initializes a new instance of the AuthenticationRequest class with the specified authentication data.

The default authentication request places credentials within an auth property in the JSON representation. The following block shows an example representation.

{ "auth" : {AuthenticationData...} }

To specify credentials for a vendor which uses a non-standard form of the request which does not include the authentication credentials within an auth property in the JSON representation of the request, see AuthenticationRequest(AuthenticationData, ImmutableDictionary{string, JToken}).

public AuthenticationRequest ( AuthenticationData auth ) : System
auth AuthenticationData An which specifies the value for the auth /// property in the JSON representation of an authentication request in the OpenStack Identity Service /// V2.
리턴 System

AuthenticationRequest() 공개 메소드

Initializes a new instance of the AuthenticationRequest class with the specified extension data.

The default authentication request places credentials within an auth property in the JSON representation. The following block shows an example representation.

{ "auth" : {AuthenticationData...}, extensionData... }

To specify credentials for a vendor which uses a non-standard form of the request which does not include the authentication credentials within an auth property in the JSON representation of the request, pass for the auth argument and use the extensionData argument to specify the complete set of properties for the authentication request.

/// If is . ///
public AuthenticationRequest ( AuthenticationData auth, JToken>.ImmutableDictionary extensionData ) : System
auth AuthenticationData An which specifies the value for the auth /// property in the JSON representation of an authentication request in the OpenStack Identity Service /// V2.
extensionData JToken>.ImmutableDictionary The extension data.
리턴 System