XmlWriter.WriteEndAttribute 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, closes the previous WriteStartAttribute(String, String) call.
public:
abstract void WriteEndAttribute();
public abstract void WriteEndAttribute ();
abstract member WriteEndAttribute : unit -> unit
Public MustOverride Sub WriteEndAttribute ()
Exceptions
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
If you call WriteStartAttribute
, you can close the attribute with this method.
You can also close the attribute by calling WriteStartAttribute
again, calling WriteAttributeString, or calling WriteEndElement.
Note
When you use the XmlWriter methods to output XML, the elements and attributes will not be written until you call the Close method. For example, if you are using the XmlWriter to populate an XmlDocument, until you close the XmlWriter, you will not be able to observe the written elements and attributes in the target document.
For the asynchronous version of this method, see WriteEndAttributeAsync.