XdmWriter.WriteStartElement Method (string, string, string)XdmWriter.WriteStartElement Method (String, String, String)XdmWriter::WriteStartElement Method (String^, String^, String^)

Writes the specified start tag and associates it with the given namespace and prefix.

Syntax

Public Overrides Sub WriteStartElement( _
    prefix As String, _
    localName As String, _
    ns As String _
)
public override void WriteStartElement(
    string prefix,
    string localName,
    string ns
)
public:
virtual void WriteStartElement(
    String^ prefix, 
    String^ localName, 
    String^ ns
) override
 

Parameters

prefix

Type: System.StringSystem.StringSystem::String^

The namespace prefix of the element.

localName

Type: System.StringSystem.StringSystem::String^

The local name of the element.

ns

Type: System.StringSystem.StringSystem::String^

The namespace URI to associate with the element.

Exceptions

ExceptionCondition
InvalidOperationExceptionInvalidOperationExceptionInvalidOperationException The writer is closed.