AuthenticationHeaderValue 생성자
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
AuthenticationHeaderValue 클래스의 새 인스턴스를 초기화합니다.
오버로드
AuthenticationHeaderValue(String) |
AuthenticationHeaderValue 클래스의 새 인스턴스를 초기화합니다. |
AuthenticationHeaderValue(String, String) |
AuthenticationHeaderValue 클래스의 새 인스턴스를 초기화합니다. |
AuthenticationHeaderValue(String)
- Source:
- AuthenticationHeaderValue.cs
- Source:
- AuthenticationHeaderValue.cs
- Source:
- 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)
- Source:
- AuthenticationHeaderValue.cs
- Source:
- AuthenticationHeaderValue.cs
- Source:
- 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
적용 대상
GitHub에서 Microsoft와 공동 작업
이 콘텐츠의 원본은 GitHub에서 찾을 수 있으며, 여기서 문제와 끌어오기 요청을 만들고 검토할 수도 있습니다. 자세한 내용은 참여자 가이드를 참조하세요.
.NET