IClientRequestParametersProvider.GetClientParameters 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.
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.