XmlDictionaryReader.MoveToStartElement Method

Definition

Tests whether the current content node is a start element or an empty element.

Overloads

MoveToStartElement(XmlDictionaryString, XmlDictionaryString)

Tests whether the current content node is a start element or an empty element and if the LocalName and NamespaceURI properties of the element matches the given argument.

MoveToStartElement(String, String)

Tests whether the current content node is a start element or an empty element and if the LocalName and NamespaceURI properties of the element matches the given arguments.

MoveToStartElement(String)

Tests whether the current content node is a start element or an empty element and if the Name property of the element matches the given argument.

MoveToStartElement()

Tests whether the current content node is a start element or an empty element.

MoveToStartElement(XmlDictionaryString, XmlDictionaryString)

Tests whether the current content node is a start element or an empty element and if the LocalName and NamespaceURI properties of the element matches the given argument.

public:
 virtual void MoveToStartElement(System::Xml::XmlDictionaryString ^ localName, System::Xml::XmlDictionaryString ^ namespaceUri);
public virtual void MoveToStartElement (System.Xml.XmlDictionaryString localName, System.Xml.XmlDictionaryString namespaceUri);
abstract member MoveToStartElement : System.Xml.XmlDictionaryString * System.Xml.XmlDictionaryString -> unit
override this.MoveToStartElement : System.Xml.XmlDictionaryString * System.Xml.XmlDictionaryString -> unit
Public Overridable Sub MoveToStartElement (localName As XmlDictionaryString, namespaceUri As XmlDictionaryString)

Parameters

localName
XmlDictionaryString

The local name of the element.

namespaceUri
XmlDictionaryString

The namespace URI of the element.

Applies to

MoveToStartElement(String, String)

Tests whether the current content node is a start element or an empty element and if the LocalName and NamespaceURI properties of the element matches the given arguments.

public:
 virtual void MoveToStartElement(System::String ^ localName, System::String ^ namespaceUri);
public virtual void MoveToStartElement (string localName, string namespaceUri);
abstract member MoveToStartElement : string * string -> unit
override this.MoveToStartElement : string * string -> unit
Public Overridable Sub MoveToStartElement (localName As String, namespaceUri As String)

Parameters

localName
String

The local name of the element.

namespaceUri
String

The namespace URI of the element.

Applies to

MoveToStartElement(String)

Tests whether the current content node is a start element or an empty element and if the Name property of the element matches the given argument.

public:
 virtual void MoveToStartElement(System::String ^ name);
public virtual void MoveToStartElement (string name);
abstract member MoveToStartElement : string -> unit
override this.MoveToStartElement : string -> unit
Public Overridable Sub MoveToStartElement (name As String)

Parameters

name
String

The Name property of the element.

Applies to

MoveToStartElement()

Tests whether the current content node is a start element or an empty element.

public:
 virtual void MoveToStartElement();
public virtual void MoveToStartElement ();
abstract member MoveToStartElement : unit -> unit
override this.MoveToStartElement : unit -> unit
Public Overridable Sub MoveToStartElement ()

Applies to