C# Класс OpenStack.Services.Identity.V2.AuthenticationRequest

Наследование: ExtensibleJsonObject
Показать файл Открыть проект Примеры использования класса

Открытые методы

Метод Описание
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