CreateXmlWriterOutputWithEncodingName

 

Creates an instance of IXmlWriter with the specified parameters.

Syntax

  
HRESULT CreateXmlWriterOutputWithEncodingName (ISequentialStream * pStream, IMalloc * pMalloc, const WCHAR * pwszEncodingName, IXmlWriterOutput ** ppOutput);  

Arguments

pStream
A pointer to the output stream for the writer to write data to.

pMalloc
A pointer to a user-provided implementation of the IMalloc interface. The writer will use this for all memory allocation. If this parameter is NULL, the writer will use its own implementation.

pwszEncodingName
Specifies the encoding that the writer will use by providing the name of the encoding.

ppOutput
The new IXmlWriterOutput object.

Return Value

Returns S_OK if no error is generated.

Remarks

After creating the writer, the output stream for the writer can be changed by using the SetOutput method of the writer.

Requirements

Header: XmlLite.h

Library: XmlLite.lib

See Also

IXmlReader Functions
IXmlWriterOutput