HttpRequestOptions.IReadOnlyDictionary<String,Object>.TryGetValue 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
获取与指定的键关联的值。
virtual bool System.Collections.Generic.IReadOnlyDictionary<System.String,System.Object>.TryGetValue(System::String ^ key, [Runtime::InteropServices::Out] System::Object ^ % value) = System::Collections::Generic::IReadOnlyDictionary<System::String ^, System::Object ^>::TryGetValue;
bool IReadOnlyDictionary<string,object>.TryGetValue (string key, out object value);
abstract member System.Collections.Generic.IReadOnlyDictionary<System.String,System.Object>.TryGetValue : string * obj -> bool
override this.System.Collections.Generic.IReadOnlyDictionary<System.String,System.Object>.TryGetValue : string * obj -> bool
Function TryGetValue (key As String, ByRef value As Object) As Boolean Implements IReadOnlyDictionary(Of String, Object).TryGetValue
参数
- key
- String
要定位的键。
- value
- Object
当此方法返回值时,如果找到该键,便会返回与指定的键相关联的值;否则,则会返回 value
参数的类型默认值。 此参数未经初始化即被传递。
返回
true
HttpRequestOptions如果实例包含具有指定键的元素,则为 ;否则为 false
。