XmlDictionaryReader.ReadFullStartElement 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 current node is an element and advances the reader to the next node.
Overloads
ReadFullStartElement() |
Checks whether the current node is an element and advances the reader to the next node. |
ReadFullStartElement(String) |
Checks whether the current node is an element with the given |
ReadFullStartElement(String, String) |
Checks whether the current node is an element with the given |
ReadFullStartElement(XmlDictionaryString, XmlDictionaryString) |
Checks whether the current node is an element with the given |
ReadFullStartElement()
- Source:
- XmlDictionaryReader.cs
- Source:
- XmlDictionaryReader.cs
- Source:
- XmlDictionaryReader.cs
Checks whether the current node is an element and advances the reader to the next node.
public:
virtual void ReadFullStartElement();
public virtual void ReadFullStartElement ();
abstract member ReadFullStartElement : unit -> unit
override this.ReadFullStartElement : unit -> unit
Public Overridable Sub ReadFullStartElement ()
Exceptions
Applies to
ReadFullStartElement(String)
- Source:
- XmlDictionaryReader.cs
- Source:
- XmlDictionaryReader.cs
- Source:
- XmlDictionaryReader.cs
Checks whether the current node is an element with the given name
and advances the reader to the next node.
public:
virtual void ReadFullStartElement(System::String ^ name);
public virtual void ReadFullStartElement (string name);
abstract member ReadFullStartElement : string -> unit
override this.ReadFullStartElement : string -> unit
Public Overridable Sub ReadFullStartElement (name As String)
Parameters
- name
- String
The qualified name of the element.
Exceptions
Applies to
ReadFullStartElement(String, String)
- Source:
- XmlDictionaryReader.cs
- Source:
- XmlDictionaryReader.cs
- Source:
- XmlDictionaryReader.cs
Checks whether the current node is an element with the given localName
and namespaceUri
and advances the reader to the next node.
public:
virtual void ReadFullStartElement(System::String ^ localName, System::String ^ namespaceUri);
public virtual void ReadFullStartElement (string localName, string namespaceUri);
abstract member ReadFullStartElement : string * string -> unit
override this.ReadFullStartElement : string * string -> unit
Public Overridable Sub ReadFullStartElement (localName As String, namespaceUri As String)
Parameters
- localName
- String
The local name of the element.
- namespaceUri
- String
The namespace URI of the element.
Exceptions
Applies to
ReadFullStartElement(XmlDictionaryString, XmlDictionaryString)
- Source:
- XmlDictionaryReader.cs
- Source:
- XmlDictionaryReader.cs
- Source:
- XmlDictionaryReader.cs
Checks whether the current node is an element with the given localName
and namespaceUri
and advances the reader to the next node.
public:
virtual void ReadFullStartElement(System::Xml::XmlDictionaryString ^ localName, System::Xml::XmlDictionaryString ^ namespaceUri);
public virtual void ReadFullStartElement (System.Xml.XmlDictionaryString localName, System.Xml.XmlDictionaryString namespaceUri);
abstract member ReadFullStartElement : System.Xml.XmlDictionaryString * System.Xml.XmlDictionaryString -> unit
override this.ReadFullStartElement : System.Xml.XmlDictionaryString * System.Xml.XmlDictionaryString -> unit
Public Overridable Sub ReadFullStartElement (localName As XmlDictionaryString, namespaceUri As XmlDictionaryString)
Parameters
- localName
- XmlDictionaryString
The local name of the element.
- namespaceUri
- XmlDictionaryString
The namespace URI of the element.