StartElement¶
Starts a new element with the specified name.
1 |
|
Starts a new element with the specified name and namespace.
1 |
|
Parameters¶
string name
Name of the element to start.
string ns
Namespace URI of the element.
Returns¶
The current XmlWriter instance, allowing for method chaining. The current XmlWriter instance, allowing for method chaining.
Remarks¶
This method creates a new element with the specified name and makes it the current element for subsequent operations.
Example¶
1 2 3 4 |
|
This method creates a new element with the specified name and namespace and makes it the current element for subsequent operations.
Example¶
1 2 3 4 |
|