AuthenticationHeaderValue コンストラクター

定義

AuthenticationHeaderValue クラスの新しいインスタンスを初期化します。

オーバーロード

AuthenticationHeaderValue(String)

AuthenticationHeaderValue クラスの新しいインスタンスを初期化します。

AuthenticationHeaderValue(String, String)

AuthenticationHeaderValue クラスの新しいインスタンスを初期化します。

AuthenticationHeaderValue(String)

ソース:
AuthenticationHeaderValue.cs
ソース:
AuthenticationHeaderValue.cs
ソース:
AuthenticationHeaderValue.cs

AuthenticationHeaderValue クラスの新しいインスタンスを初期化します。

public:
 AuthenticationHeaderValue(System::String ^ scheme);
public AuthenticationHeaderValue (string scheme);
new System.Net.Http.Headers.AuthenticationHeaderValue : string -> System.Net.Http.Headers.AuthenticationHeaderValue
Public Sub New (scheme As String)

パラメーター

scheme
String

承認のために使用するスキーム。

注釈

例:

HttpClient client = new HttpClient();
client.DefaultRequestHeaders.Authorization = new AuthenticationHeaderValue(ACCESS_TOKEN);
Dim client = New HttpClient()
client.DefaultRequestHeaders.Authorization = new AuthenticationHeaderValue(ACCESS_TOKEN)

次のヘッダーが生成されます。

Authorization: ACCESS_TOKEN

適用対象

AuthenticationHeaderValue(String, String)

ソース:
AuthenticationHeaderValue.cs
ソース:
AuthenticationHeaderValue.cs
ソース:
AuthenticationHeaderValue.cs

AuthenticationHeaderValue クラスの新しいインスタンスを初期化します。

public:
 AuthenticationHeaderValue(System::String ^ scheme, System::String ^ parameter);
public AuthenticationHeaderValue (string scheme, string parameter);
public AuthenticationHeaderValue (string scheme, string? parameter);
new System.Net.Http.Headers.AuthenticationHeaderValue : string * string -> System.Net.Http.Headers.AuthenticationHeaderValue
Public Sub New (scheme As String, parameter As String)

パラメーター

scheme
String

承認のために使用するスキーム。

parameter
String

要求されているリソースのユーザー エージェントの認証情報を含む資格情報。

注釈

例:

HttpClient client = new HttpClient();
client.DefaultRequestHeaders.Authorization = new AuthenticationHeaderValue("Bearer", ACCESS_TOKEN);
Dim client = new HttpClient()
client.DefaultRequestHeaders.Authorization = new AuthenticationHeaderValue("Bearer", ACCESS_TOKEN)

次のヘッダーが生成されます。

Authorization: Bearer ACCESS_TOKEN

適用対象