BaseAbstractAcquireTokenParameterBuilder<T>.WithExtraQueryParameters メソッド

定義

オーバーロード

名前 説明
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

チェーンするビルダー。メソッドを使用します。

適用対象