XmlDictionaryReader.MoveToStartElement 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.
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)
- Source:
- XmlDictionaryReader.cs
- Source:
- XmlDictionaryReader.cs
- Source:
- XmlDictionaryReader.cs
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)
- Source:
- XmlDictionaryReader.cs
- Source:
- XmlDictionaryReader.cs
- Source:
- XmlDictionaryReader.cs
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)
- Source:
- XmlDictionaryReader.cs
- Source:
- XmlDictionaryReader.cs
- Source:
- XmlDictionaryReader.cs
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
Applies to
MoveToStartElement()
- Source:
- XmlDictionaryReader.cs
- Source:
- XmlDictionaryReader.cs
- Source:
- XmlDictionaryReader.cs
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 ()