Noemax FastInfoset.NET
WriteXmlnsAttribute Method
See Also  Send Feedback
Noemax.FastInfoset Namespace > XmlFastInfosetWriter Class : WriteXmlnsAttribute Method






prefix
The prefix that is bound to the given namespace.
namespaceUri
The namespace to which the prefix is bound.
Writes a namespace declaration attribute.

Syntax

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

Parameters

prefix
The prefix that is bound to the given namespace.
namespaceUri
The namespace to which the prefix is bound.

See Also