XmlDictionaryReader.IsLocalName 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.
Checks whether the parameter, localName
, is the local name of the current node.
Overloads
IsLocalName(String) |
Checks whether the parameter, |
IsLocalName(XmlDictionaryString) |
Checks whether the parameter, |
IsLocalName(String)
- Source:
- XmlDictionaryReader.cs
- Source:
- XmlDictionaryReader.cs
- Source:
- XmlDictionaryReader.cs
Checks whether the parameter, localName
, is the local name of the current node.
public:
virtual bool IsLocalName(System::String ^ localName);
public virtual bool IsLocalName (string localName);
abstract member IsLocalName : string -> bool
override this.IsLocalName : string -> bool
Public Overridable Function IsLocalName (localName As String) As Boolean
Parameters
- localName
- String
The local name of the current node.
Returns
true
if localName
matches local name of the current node; otherwise false
.
Applies to
IsLocalName(XmlDictionaryString)
- Source:
- XmlDictionaryReader.cs
- Source:
- XmlDictionaryReader.cs
- Source:
- XmlDictionaryReader.cs
Checks whether the parameter, localName
, is the local name of the current node.
public:
virtual bool IsLocalName(System::Xml::XmlDictionaryString ^ localName);
public virtual bool IsLocalName (System.Xml.XmlDictionaryString localName);
abstract member IsLocalName : System.Xml.XmlDictionaryString -> bool
override this.IsLocalName : System.Xml.XmlDictionaryString -> bool
Public Overridable Function IsLocalName (localName As XmlDictionaryString) As Boolean
Parameters
- localName
- XmlDictionaryString
An XmlDictionaryString that represents the local name of the current node.
Returns
true
if localName
matches local name of the current node; otherwise false
.
Exceptions
localName
is null
.