AbstractAcquireTokenParameterBuilder<T>.WithExtraQueryParameters Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Caution
This method is deprecated. Please use the WithExtraQueryParameters(IDictionary<string, (string value, bool includeInCacheKey)>) method instead, which provides control over which parameters are included in the cache key.
Sets Extra Query Parameters for the query string in the HTTP authentication request.
[System.Obsolete("This method is deprecated. Please 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(string extraQueryParameters);
[<System.Obsolete("This method is deprecated. Please use the WithExtraQueryParameters(IDictionary<string, (string value, bool includeInCacheKey)>) method instead, which provides control over which parameters are included in the cache key.", false)>]
override this.WithExtraQueryParameters : string -> 'T
Public Function WithExtraQueryParameters (extraQueryParameters As String) As T
Parameters
- extraQueryParameters
- String
This parameter will be appended as is to the query string in the HTTP authentication request to the authority.
The string needs to be properly URL-encoded and ready to send as a string of segments of the form key=value separated by an ampersand character.
Returns
The builder to chain .With methods.
- Attributes