AuthenticationHeaderValue コンストラクター
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
AuthenticationHeaderValue クラスの新しいインスタンスを初期化します。
オーバーロード
AuthenticationHeaderValue(String) |
AuthenticationHeaderValue クラスの新しいインスタンスを初期化します。 |
AuthenticationHeaderValue(String, String) |
AuthenticationHeaderValue クラスの新しいインスタンスを初期化します。 |
AuthenticationHeaderValue(String)
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 クラスの新しいインスタンスを初期化します。
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
適用対象
GitHub で Microsoft と共同作業する
このコンテンツのソースは GitHub にあります。そこで、issue や pull request を作成および確認することもできます。 詳細については、共同作成者ガイドを参照してください。
.NET