Information
The topic you requested is included in another documentation set. For convenience, it's displayed below. Choose Switch to see the topic in its original location.

XmlDictionaryWriter::CreateMtomWriter Method (Stream^, Encoding^, Int32, String^, String^, String^, Boolean, Boolean)

 

Creates an instance of XmlDictionaryWriter that writes XML in the MTOM format.

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

public:
static XmlDictionaryWriter^ CreateMtomWriter(
	Stream^ stream,
	Encoding^ encoding,
	int maxSizeInBytes,
	String^ startInfo,
	String^ boundary,
	String^ startUri,
	bool writeMessageHeaders,
	bool ownsStream
)

Parameters

stream
Type: System.IO::Stream^

The stream to write to.

encoding
Type: System.Text::Encoding^

The character encoding of the stream.

maxSizeInBytes
Type: System::Int32

The maximum number of bytes that are buffered in the writer.

startInfo
Type: System::String^

The content-type of the MIME part that contains the Infoset.

boundary
Type: System::String^

The MIME boundary in the message.

startUri
Type: System::String^

The content-id URI of the MIME part that contains the Infoset.

writeMessageHeaders
Type: System::Boolean

true to write message headers.

ownsStream
Type: System::Boolean

true to indicate that the stream is closed by the writer when done; otherwise false.

Return Value

Type: System.Xml::XmlDictionaryWriter^

An instance of XmlDictionaryWriter.

.NET Framework
Available since 3.0
Return to top
Show: