IClientRequestParametersProvider.GetClientParameters 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
获取具有客户端 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)
参数
- context
- HttpContext
当前的 HttpContext。
- clientId
- String
客户端的客户端 ID。
返回
包含 IDictionary<TKey,TValue> 客户端参数及其值的 。