XmlWriter.WriteNmToken(String) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
When overridden in a derived class, writes out the specified name, ensuring it is a valid NmToken according to the W3C XML 1.0 recommendation (https://www.w3.org/TR/1998/REC-xml-19980210#NT-Name).
public:
virtual void WriteNmToken(System::String ^ name);
public:
abstract void WriteNmToken(System::String ^ name);
public virtual void WriteNmToken (string name);
public abstract void WriteNmToken (string name);
abstract member WriteNmToken : string -> unit
override this.WriteNmToken : string -> unit
abstract member WriteNmToken : string -> unit
Public Overridable Sub WriteNmToken (name As String)
Public MustOverride Sub WriteNmToken (name As String)
Parameters
- name
- String
The name to write.
Exceptions
name
is not a valid NmToken; or name
is either null
or String.Empty
.
An XmlWriter method was called before a previous asynchronous operation finished. In this case, InvalidOperationException is thrown with the message "An asynchronous operation is already in progress."
Remarks
For the asynchronous version of this method, see WriteNmTokenAsync.