Noemax FastInfoset.NET
IsStartElement() Method
See Also  Send Feedback
Noemax.FastInfoset Namespace > XmlFastInfosetReader Class > IsStartElement Method : IsStartElement() Method






Tests if the current content node is a start tag.

Syntax

Visual Basic (Declaration) 
Public Overloads Overrides NotOverridable Function IsStartElement() As Boolean
Visual Basic (Usage)Copy Code
Dim instance As XmlFastInfosetReader
Dim value As Boolean
 
value = instance.IsStartElement()
C# 
public override bool IsStartElement()
Delphi 
public function IsStartElement(): Boolean; override; 
JScript 
public override function IsStartElement() : boolean;
Managed Extensions for C++ 
public: bool IsStartElement(); override 
C++/CLI 
public:
bool IsStartElement(); override 

Return Value

true if MoveToContent finds a start tag or empty element tag; false if a node type other than XmlNodeType.Element was found.

See Also