Share via


IClientRequestParametersProvider.GetClientParameters Method

Definition

Gets parameter values for the client with client idclientId.

public:
 System::Collections::Generic::IDictionary<System::String ^, System::String ^> ^ GetClientParameters(Microsoft::AspNetCore::Http::HttpContext ^ context, System::String ^ clientId);
public System.Collections.Generic.IDictionary<string,string> GetClientParameters (Microsoft.AspNetCore.Http.HttpContext context, string clientId);
abstract member GetClientParameters : Microsoft.AspNetCore.Http.HttpContext * string -> System.Collections.Generic.IDictionary<string, string>
Public Function GetClientParameters (context As HttpContext, clientId As String) As IDictionary(Of String, String)

Parameters

context
HttpContext

The current HttpContext.

clientId
String

The client id for the client.

Returns

A IDictionary<TKey,TValue> containing the client parameters and their values.

Applies to