BaseAbstractAcquireTokenParameterBuilder<T>.WithExtraQueryParameters 메서드

정의

오버로드

Name Description
WithExtraQueryParameters(Dictionary<String,String>)
사용되지 않음.

HTTP 인증 요청의 쿼리 문자열에 대한 추가 쿼리 매개 변수를 설정합니다.

WithExtraQueryParameters(IDictionary<String,ValueTuple<String,Boolean>>)

캐시 키에 포함되는 매개 변수를 제어하여 HTTP 인증 요청의 쿼리 문자열에 대한 추가 쿼리 매개 변수를 설정합니다.

WithExtraQueryParameters(Dictionary<String,String>)

주의

This method is deprecated. Use the WithExtraQueryParameters(IDictionary<string, (string value, bool includeInCacheKey)>) method instead, which provides control over which parameters are included in the cache key.

HTTP 인증 요청의 쿼리 문자열에 대한 추가 쿼리 매개 변수를 설정합니다.

[System.Obsolete("This method is deprecated. Use the WithExtraQueryParameters(IDictionary<string, (string value, bool includeInCacheKey)>) method instead, which provides control over which parameters are included in the cache key.", false)]
public T WithExtraQueryParameters(System.Collections.Generic.Dictionary<string,string> extraQueryParameters);
[<System.Obsolete("This method is deprecated. Use the WithExtraQueryParameters(IDictionary<string, (string value, bool includeInCacheKey)>) method instead, which provides control over which parameters are included in the cache key.", false)>]
member this.WithExtraQueryParameters : System.Collections.Generic.Dictionary<string, string> -> 'T
Public Function WithExtraQueryParameters (extraQueryParameters As Dictionary(Of String, String)) As T

매개 변수

extraQueryParameters
Dictionary<String,String>

이 매개 변수는 HTTP 인증 요청의 쿼리 문자열에 앰퍼샌드 문자로 구분된 양식 key=value 세그먼트의 문자열로 기관에 추가됩니다. 매개 변수는 null일 수 있습니다.

반품

T

를 연결할 작성기입니다. 메서드를 사용합니다.

특성

적용 대상

WithExtraQueryParameters(IDictionary<String,ValueTuple<String,Boolean>>)

캐시 키에 포함되는 매개 변수를 제어하여 HTTP 인증 요청의 쿼리 문자열에 대한 추가 쿼리 매개 변수를 설정합니다.

public T WithExtraQueryParameters(System.Collections.Generic.IDictionary<string,(string Value, bool IncludeInCacheKey)> extraQueryParameters);
member this.WithExtraQueryParameters : System.Collections.Generic.IDictionary<string, ValueTuple<string, bool>> -> 'T
Public Function WithExtraQueryParameters (extraQueryParameters As IDictionary(Of String, ValueTuple(Of String, Boolean))) As T

매개 변수

extraQueryParameters
IDictionary<String,ValueTuple<String,Boolean>>

이 매개 변수는 HTTP 인증 요청의 쿼리 문자열에 있는 그대로 기관에 추가되고 애플리케이션 수준 WithExtraQueryParameters API에 추가된 매개 변수와 병합됩니다. 각 사전 항목은 매개 변수 이름을 포함하는 튜플에 매핑합니다. - 값: 쿼리 문자열에 추가될 매개 변수 값 - IncludeInCacheKey: 토큰의 캐시 키를 계산할 때 이 매개 변수를 포함해야 하는지 여부입니다. 올바른 토큰이 캐시에서 반환되도록 하려면 매개 변수가 토큰 콘텐츠 또는 유효성(예: 리소스별 클레임 또는 매개 변수)에 영향을 주는 경우 IncludeInCacheKey가 true여야 합니다. 매개 변수는 null일 수 있습니다.

반품

T

연결할 작성기입니다. 메서드를 사용합니다.

적용 대상