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