XmlDictionaryReader.IsLocalName Method

Definition

Checks whether the parameter, localName, is the local name of the current node.

Overloads

IsLocalName(String)

Checks whether the parameter, localName, is the local name of the current node.

IsLocalName(XmlDictionaryString)

Checks whether the parameter, localName, is the local name of the current node.

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.

Applies to