XmlTextWriter Methods

 

Namespace:   System.Xml
Assembly:  System.Xml (in System.Xml.dll)

NameDescription
System_CAPS_pubmethodClose()

Closes this stream and the underlying stream.(Overrides XmlWriter::Close().)

System_CAPS_pubmethodDispose()

Releases all resources used by the current instance of the XmlWriter class.(Inherited from XmlWriter.)

System_CAPS_protmethodDispose(Boolean)

Releases the unmanaged resources used by the XmlWriter and optionally releases the managed resources.(Inherited from XmlWriter.)

System_CAPS_pubmethodEquals(Object^)

Determines whether the specified object is equal to the current object.(Inherited from Object.)

System_CAPS_protmethodFinalize()

Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection.(Inherited from Object.)

System_CAPS_pubmethodFlush()

Flushes whatever is in the buffer to the underlying streams and also flushes the underlying stream.(Overrides XmlWriter::Flush().)

System_CAPS_pubmethodFlushAsync()

Asynchronously flushes whatever is in the buffer to the underlying streams and also flushes the underlying stream.(Inherited from XmlWriter.)

System_CAPS_pubmethodGetHashCode()

Serves as the default hash function. (Inherited from Object.)

System_CAPS_pubmethodGetType()

Gets the Type of the current instance.(Inherited from Object.)

System_CAPS_pubmethodLookupPrefix(String^)

Returns the closest prefix defined in the current namespace scope for the namespace URI.(Overrides XmlWriter::LookupPrefix(String^).)

System_CAPS_protmethodMemberwiseClone()

Creates a shallow copy of the current Object.(Inherited from Object.)

System_CAPS_pubmethodToString()

Returns a string that represents the current object.(Inherited from Object.)

System_CAPS_pubmethodWriteAttributes(XmlReader^, Boolean)

When overridden in a derived class, writes out all the attributes found at the current position in the XmlReader.(Inherited from XmlWriter.)

System_CAPS_pubmethodWriteAttributesAsync(XmlReader^, Boolean)

Asynchronously writes out all the attributes found at the current position in the XmlReader.(Inherited from XmlWriter.)

System_CAPS_pubmethodWriteAttributeString(String^, String^)

When overridden in a derived class, writes out the attribute with the specified local name and value.(Inherited from XmlWriter.)

System_CAPS_pubmethodWriteAttributeString(String^, String^, String^)

When overridden in a derived class, writes an attribute with the specified local name, namespace URI, and value.(Inherited from XmlWriter.)

System_CAPS_pubmethodWriteAttributeString(String^, String^, String^, String^)

When overridden in a derived class, writes out the attribute with the specified prefix, local name, namespace URI, and value.(Inherited from XmlWriter.)

System_CAPS_pubmethodWriteAttributeStringAsync(String^, String^, String^, String^)

Asynchronously writes out the attribute with the specified prefix, local name, namespace URI, and value.(Inherited from XmlWriter.)

System_CAPS_pubmethodWriteBase64(array<Byte>^, Int32, Int32)

Encodes the specified binary bytes as base64 and writes out the resulting text.(Overrides XmlWriter::WriteBase64(array<Byte>^, Int32, Int32).)

System_CAPS_pubmethodWriteBase64Async(array<Byte>^, Int32, Int32)

Asynchronously encodes the specified binary bytes as Base64 and writes out the resulting text.(Inherited from XmlWriter.)

System_CAPS_pubmethodWriteBinHex(array<Byte>^, Int32, Int32)

Encodes the specified binary bytes as binhex and writes out the resulting text.(Overrides XmlWriter::WriteBinHex(array<Byte>^, Int32, Int32).)

System_CAPS_pubmethodWriteBinHexAsync(array<Byte>^, Int32, Int32)

Asynchronously encodes the specified binary bytes as BinHex and writes out the resulting text.(Inherited from XmlWriter.)

System_CAPS_pubmethodWriteCData(String^)

Writes out a <![CDATA[...]]> block containing the specified text.(Overrides XmlWriter::WriteCData(String^).)

System_CAPS_pubmethodWriteCDataAsync(String^)

Asynchronously writes out a <![CDATA[...]]> block containing the specified text.(Inherited from XmlWriter.)

System_CAPS_pubmethodWriteCharEntity(Char)

Forces the generation of a character entity for the specified Unicode character value.(Overrides XmlWriter::WriteCharEntity(Char).)

System_CAPS_pubmethodWriteCharEntityAsync(Char)

Asynchronously forces the generation of a character entity for the specified Unicode character value.(Inherited from XmlWriter.)

System_CAPS_pubmethodWriteChars(array<Char>^, Int32, Int32)

Writes text one buffer at a time.(Overrides XmlWriter::WriteChars(array<Char>^, Int32, Int32).)

System_CAPS_pubmethodWriteCharsAsync(array<Char>^, Int32, Int32)

Asynchronously writes text one buffer at a time.(Inherited from XmlWriter.)

System_CAPS_pubmethodWriteComment(String^)

Writes out a comment <!--...--> containing the specified text.(Overrides XmlWriter::WriteComment(String^).)

System_CAPS_pubmethodWriteCommentAsync(String^)

Asynchronously writes out a comment <!--...--> containing the specified text.(Inherited from XmlWriter.)

System_CAPS_pubmethodWriteDocType(String^, String^, String^, String^)

Writes the DOCTYPE declaration with the specified name and optional attributes.(Overrides XmlWriter::WriteDocType(String^, String^, String^, String^).)

System_CAPS_pubmethodWriteDocTypeAsync(String^, String^, String^, String^)

Asynchronously writes the DOCTYPE declaration with the specified name and optional attributes.(Inherited from XmlWriter.)

System_CAPS_pubmethodWriteElementString(String^, String^)

Writes an element with the specified local name and value.(Inherited from XmlWriter.)

System_CAPS_pubmethodWriteElementString(String^, String^, String^)

Writes an element with the specified local name, namespace URI, and value.(Inherited from XmlWriter.)

System_CAPS_pubmethodWriteElementString(String^, String^, String^, String^)

Writes an element with the specified prefix, local name, namespace URI, and value.(Inherited from XmlWriter.)

System_CAPS_pubmethodWriteElementStringAsync(String^, String^, String^, String^)

Asynchronously writes an element with the specified prefix, local name, namespace URI, and value.(Inherited from XmlWriter.)

System_CAPS_pubmethodWriteEndAttribute()

Closes the previous WriteStartAttribute call.(Overrides XmlWriter::WriteEndAttribute().)

System_CAPS_protmethodWriteEndAttributeAsync()

Asynchronously closes the previous WriteStartAttribute call.(Inherited from XmlWriter.)

System_CAPS_pubmethodWriteEndDocument()

Closes any open elements or attributes and puts the writer back in the Start state.(Overrides XmlWriter::WriteEndDocument().)

System_CAPS_pubmethodWriteEndDocumentAsync()

Asynchronously closes any open elements or attributes and puts the writer back in the Start state.(Inherited from XmlWriter.)

System_CAPS_pubmethodWriteEndElement()

Closes one element and pops the corresponding namespace scope.(Overrides XmlWriter::WriteEndElement().)

System_CAPS_pubmethodWriteEndElementAsync()

Asynchronously closes one element and pops the corresponding namespace scope.(Inherited from XmlWriter.)

System_CAPS_pubmethodWriteEntityRef(String^)

Writes out an entity reference as &name;.(Overrides XmlWriter::WriteEntityRef(String^).)

System_CAPS_pubmethodWriteEntityRefAsync(String^)

Asynchronously writes out an entity reference as &name;.(Inherited from XmlWriter.)

System_CAPS_pubmethodWriteFullEndElement()

Closes one element and pops the corresponding namespace scope.(Overrides XmlWriter::WriteFullEndElement().)

System_CAPS_pubmethodWriteFullEndElementAsync()

Asynchronously closes one element and pops the corresponding namespace scope.(Inherited from XmlWriter.)

System_CAPS_pubmethodWriteName(String^)

Writes out the specified name, ensuring it is a valid name according to the W3C XML 1.0 recommendation (http://www.w3.org/TR/1998/REC-xml-19980210#NT-Name).(Overrides XmlWriter::WriteName(String^).)

System_CAPS_pubmethodWriteNameAsync(String^)

Asynchronously writes out the specified name, ensuring it is a valid name according to the W3C XML 1.0 recommendation (http://www.w3.org/TR/1998/REC-xml-19980210#NT-Name).(Inherited from XmlWriter.)

System_CAPS_pubmethodWriteNmToken(String^)

Writes out the specified name, ensuring it is a valid NmToken according to the W3C XML 1.0 recommendation (http://www.w3.org/TR/1998/REC-xml-19980210#NT-Name).(Overrides XmlWriter::WriteNmToken(String^).)

System_CAPS_pubmethodWriteNmTokenAsync(String^)

Asynchronously writes out the specified name, ensuring it is a valid NmToken according to the W3C XML 1.0 recommendation (http://www.w3.org/TR/1998/REC-xml-19980210#NT-Name).(Inherited from XmlWriter.)

System_CAPS_pubmethodWriteNode(XmlReader^, Boolean)

When overridden in a derived class, copies everything from the reader to the writer and moves the reader to the start of the next sibling.(Inherited from XmlWriter.)

System_CAPS_pubmethodWriteNode(XPathNavigator^, Boolean)

Copies everything from the XPathNavigator object to the writer. The position of the XPathNavigator remains unchanged.(Inherited from XmlWriter.)

System_CAPS_pubmethodWriteNodeAsync(XmlReader^, Boolean)

Asynchronously copies everything from the reader to the writer and moves the reader to the start of the next sibling.(Inherited from XmlWriter.)

System_CAPS_pubmethodWriteNodeAsync(XPathNavigator^, Boolean)

Asynchronously copies everything from the XPathNavigator object to the writer. The position of the XPathNavigator remains unchanged.(Inherited from XmlWriter.)

System_CAPS_pubmethodWriteProcessingInstruction(String^, String^)

Writes out a processing instruction with a space between the name and text as follows: <?name text?>.(Overrides XmlWriter::WriteProcessingInstruction(String^, String^).)

System_CAPS_pubmethodWriteProcessingInstructionAsync(String^, String^)

Asynchronously writes out a processing instruction with a space between the name and text as follows: <?name text?>.(Inherited from XmlWriter.)

System_CAPS_pubmethodWriteQualifiedName(String^, String^)

Writes out the namespace-qualified name. This method looks up the prefix that is in scope for the given namespace.(Overrides XmlWriter::WriteQualifiedName(String^, String^).)

System_CAPS_pubmethodWriteQualifiedNameAsync(String^, String^)

Asynchronously writes out the namespace-qualified name. This method looks up the prefix that is in scope for the given namespace.(Inherited from XmlWriter.)

System_CAPS_pubmethodWriteRaw(array<Char>^, Int32, Int32)

Writes raw markup manually from a character buffer.(Overrides XmlWriter::WriteRaw(array<Char>^, Int32, Int32).)

System_CAPS_pubmethodWriteRaw(String^)

Writes raw markup manually from a string.(Overrides XmlWriter::WriteRaw(String^).)

System_CAPS_pubmethodWriteRawAsync(array<Char>^, Int32, Int32)

Asynchronously writes raw markup manually from a character buffer.(Inherited from XmlWriter.)

System_CAPS_pubmethodWriteRawAsync(String^)

Asynchronously writes raw markup manually from a string.(Inherited from XmlWriter.)

System_CAPS_pubmethodWriteStartAttribute(String^)

Writes the start of an attribute with the specified local name.(Inherited from XmlWriter.)

System_CAPS_pubmethodWriteStartAttribute(String^, String^)

Writes the start of an attribute with the specified local name and namespace URI.(Inherited from XmlWriter.)

System_CAPS_pubmethodWriteStartAttribute(String^, String^, String^)

Writes the start of an attribute.(Overrides XmlWriter::WriteStartAttribute(String^, String^, String^).)

System_CAPS_protmethodWriteStartAttributeAsync(String^, String^, String^)

Asynchronously writes the start of an attribute with the specified prefix, local name, and namespace URI.(Inherited from XmlWriter.)

System_CAPS_pubmethodWriteStartDocument()

Writes the XML declaration with the version "1.0".(Overrides XmlWriter::WriteStartDocument().)

System_CAPS_pubmethodWriteStartDocument(Boolean)

Writes the XML declaration with the version "1.0" and the standalone attribute.(Overrides XmlWriter::WriteStartDocument(Boolean).)

System_CAPS_pubmethodWriteStartDocumentAsync()

Asynchronously writes the XML declaration with the version "1.0".(Inherited from XmlWriter.)

System_CAPS_pubmethodWriteStartDocumentAsync(Boolean)

Asynchronously writes the XML declaration with the version "1.0" and the standalone attribute.(Inherited from XmlWriter.)

System_CAPS_pubmethodWriteStartElement(String^)

When overridden in a derived class, writes out a start tag with the specified local name.(Inherited from XmlWriter.)

System_CAPS_pubmethodWriteStartElement(String^, String^)

When overridden in a derived class, writes the specified start tag and associates it with the given namespace.(Inherited from XmlWriter.)

System_CAPS_pubmethodWriteStartElement(String^, String^, String^)

Writes the specified start tag and associates it with the given namespace and prefix.(Overrides XmlWriter::WriteStartElement(String^, String^, String^).)

System_CAPS_pubmethodWriteStartElementAsync(String^, String^, String^)

Asynchronously writes the specified start tag and associates it with the given namespace and prefix.(Inherited from XmlWriter.)

System_CAPS_pubmethodWriteString(String^)

Writes the given text content.(Overrides XmlWriter::WriteString(String^).)

System_CAPS_pubmethodWriteStringAsync(String^)

Asynchronously writes the given text content.(Inherited from XmlWriter.)

System_CAPS_pubmethodWriteSurrogateCharEntity(Char, Char)

Generates and writes the surrogate character entity for the surrogate character pair.(Overrides XmlWriter::WriteSurrogateCharEntity(Char, Char).)

System_CAPS_pubmethodWriteSurrogateCharEntityAsync(Char, Char)

Asynchronously generates and writes the surrogate character entity for the surrogate character pair.(Inherited from XmlWriter.)

System_CAPS_pubmethodWriteValue(Boolean)

Writes a Boolean value.(Inherited from XmlWriter.)

System_CAPS_pubmethodWriteValue(DateTime)

Writes a DateTime value.(Inherited from XmlWriter.)

System_CAPS_pubmethodWriteValue(DateTimeOffset)

Writes a DateTimeOffset value.(Inherited from XmlWriter.)

System_CAPS_pubmethodWriteValue(Decimal)

Writes a Decimal value.(Inherited from XmlWriter.)

System_CAPS_pubmethodWriteValue(Double)

Writes a Double value.(Inherited from XmlWriter.)

System_CAPS_pubmethodWriteValue(Int32)

Writes a Int32 value.(Inherited from XmlWriter.)

System_CAPS_pubmethodWriteValue(Int64)

Writes a Int64 value.(Inherited from XmlWriter.)

System_CAPS_pubmethodWriteValue(Object^)

Writes the object value.(Inherited from XmlWriter.)

System_CAPS_pubmethodWriteValue(Single)

Writes a single-precision floating-point number.(Inherited from XmlWriter.)

System_CAPS_pubmethodWriteValue(String^)

Writes a String value.(Inherited from XmlWriter.)

System_CAPS_pubmethodWriteWhitespace(String^)

Writes out the given white space.(Overrides XmlWriter::WriteWhitespace(String^).)

System_CAPS_pubmethodWriteWhitespaceAsync(String^)

Asynchronously writes out the given white space.(Inherited from XmlWriter.)

Return to top
Show: