XmlBinaryReaderSession.TryLookup 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
检查内部集合是否包含项。
重载
TryLookup(Int32, XmlDictionaryString) |
检查内部集合是否包含与键匹配的项。 |
TryLookup(String, XmlDictionaryString) |
检查内部集合是否包含与值匹配的项。 |
TryLookup(XmlDictionaryString, XmlDictionaryString) |
检查内部集合是否包含与值匹配的项。 |
TryLookup(Int32, XmlDictionaryString)
- Source:
- XmlBinaryReaderSession.cs
- Source:
- XmlBinaryReaderSession.cs
- Source:
- XmlBinaryReaderSession.cs
检查内部集合是否包含与键匹配的项。
public:
virtual bool TryLookup(int key, [Runtime::InteropServices::Out] System::Xml::XmlDictionaryString ^ % result);
public bool TryLookup (int key, out System.Xml.XmlDictionaryString result);
public bool TryLookup (int key, out System.Xml.XmlDictionaryString? result);
abstract member TryLookup : int * XmlDictionaryString -> bool
override this.TryLookup : int * XmlDictionaryString -> bool
Public Function TryLookup (key As Integer, ByRef result As XmlDictionaryString) As Boolean
参数
- key
- Int32
要搜索的键。
- result
- XmlDictionaryString
当此方法返回时,如果找到词条,则包含字符串;否则为 null
。 此参数未经初始化即被传递。
返回
如果找到匹配 key
的项,则为 true
;否则,为 false
。
实现
例外
key
为 null
。
适用于
TryLookup(String, XmlDictionaryString)
- Source:
- XmlBinaryReaderSession.cs
- Source:
- XmlBinaryReaderSession.cs
- Source:
- XmlBinaryReaderSession.cs
检查内部集合是否包含与值匹配的项。
public:
virtual bool TryLookup(System::String ^ value, [Runtime::InteropServices::Out] System::Xml::XmlDictionaryString ^ % result);
public bool TryLookup (string value, out System.Xml.XmlDictionaryString result);
public bool TryLookup (string value, out System.Xml.XmlDictionaryString? result);
abstract member TryLookup : string * XmlDictionaryString -> bool
override this.TryLookup : string * XmlDictionaryString -> bool
Public Function TryLookup (value As String, ByRef result As XmlDictionaryString) As Boolean
参数
- value
- String
要搜索的值。
- result
- XmlDictionaryString
当此方法返回时,如果找到词条,则包含字符串;否则为 null
。 此参数未经初始化即被传递。
返回
如果找到匹配 value
的项,则为 true
;否则,为 false
。
实现
例外
value
为 null
。
适用于
TryLookup(XmlDictionaryString, XmlDictionaryString)
- Source:
- XmlBinaryReaderSession.cs
- Source:
- XmlBinaryReaderSession.cs
- Source:
- XmlBinaryReaderSession.cs
检查内部集合是否包含与值匹配的项。
public:
virtual bool TryLookup(System::Xml::XmlDictionaryString ^ value, [Runtime::InteropServices::Out] System::Xml::XmlDictionaryString ^ % result);
public bool TryLookup (System.Xml.XmlDictionaryString value, out System.Xml.XmlDictionaryString result);
public bool TryLookup (System.Xml.XmlDictionaryString value, out System.Xml.XmlDictionaryString? result);
abstract member TryLookup : System.Xml.XmlDictionaryString * XmlDictionaryString -> bool
override this.TryLookup : System.Xml.XmlDictionaryString * XmlDictionaryString -> bool
Public Function TryLookup (value As XmlDictionaryString, ByRef result As XmlDictionaryString) As Boolean
参数
- value
- XmlDictionaryString
要搜索的值。
- result
- XmlDictionaryString
当此方法返回时,如果找到词条,则包含字符串;否则为 null
。 此参数未经初始化即被传递。
返回
如果找到匹配 value
的项,则为 true
;否则,为 false
。
实现
例外
value
为 null
。