AbstractApplicationBuilder<T>.WithExtraQueryParameters Method

Definition

Overloads

WithExtraQueryParameters(IDictionary<String,String>)

Sets Extra Query Parameters for the query string in the HTTP authentication request

WithExtraQueryParameters(String)

Sets Extra Query Parameters for the query string in the HTTP authentication request

WithExtraQueryParameters(IDictionary<String,String>)

Sets Extra Query Parameters for the query string in the HTTP authentication request

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

Parameters

extraQueryParameters
IDictionary<String,String>

This parameter will be appended as is to the query string in the HTTP authentication request to the authority as a string of segments of the form key=value separated by an ampersand character. The parameter can be null.

Returns

T

The builder to chain the .With methods

Applies to

WithExtraQueryParameters(String)

Sets Extra Query Parameters for the query string in the HTTP authentication request

public T WithExtraQueryParameters (string extraQueryParameters);
member 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

T

Applies to