Noemax FastInfoset.NET
WriteStartElement(String,String,String) Method
See Also  Send Feedback
Noemax.FastInfoset Namespace > XmlFastInfosetWriter Class > WriteStartElement Method : WriteStartElement(String,String,String) Method






prefix
The namespace prefix of the element.
localName
The local name of the element.
ns
The namespace URI to associate with the element.
Writes the specified start tag.

Syntax

Visual Basic (Declaration) 
Public Overloads Overrides NotOverridable Sub WriteStartElement( _
   ByVal prefix As String, _
   ByVal localName As String, _
   ByVal ns As String _
) 
Visual Basic (Usage)Copy Code
Dim instance As XmlFastInfosetWriter
Dim prefix As String
Dim localName As String
Dim ns As String
 
instance.WriteStartElement(prefix, localName, ns)
C# 
public override void WriteStartElement( 
   string prefix,
   string localName,
   string ns
)
Delphi 
public procedure WriteStartElement( 
    prefix: String;
    localName: String;
    ns: String
); override; 
JScript 
public override function WriteStartElement( 
   prefix : String,
   localName : String,
   ns : String
);
Managed Extensions for C++ 
public: void WriteStartElement( 
   string* prefix,
   string* localName,
   string* ns
) override 
C++/CLI 
public:
void WriteStartElement( 
   String^ prefix,
   String^ localName,
   String^ ns
) override 

Parameters

prefix
The namespace prefix of the element.
localName
The local name of the element.
ns
The namespace URI to associate with the element.

See Also