JsonReaderWriterFactory.CreateJsonWriter Method (Stream)

Microsoft Silverlight will reach end of support after October 2021. Learn more.

Creates an XmlDictionaryWriter that writes data encoded with JSON to a stream using a UTF-8 character encoding.

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

Syntax

'Declaration
Public Shared Function CreateJsonWriter ( _
    stream As Stream _
) As XmlDictionaryWriter
public static XmlDictionaryWriter CreateJsonWriter(
    Stream stream
)

Parameters

Return Value

Type: System.Xml.XmlDictionaryWriter
An XmlDictionaryWriter that writes data encoded with JSON to the stream from an XML Infoset.

Exceptions

Exception Condition
ArgumentNullException

stream is nulla null reference (Nothing in Visual Basic).

Remarks

The default character encoding used here is UTF-8. If you want to specify a different character encoding, use one of the other two overloads for this method.

When the writer is closed, the stream is closed by this overload as well. If you do not want the stream to be closed by the writer when it is done, then use the CreateJsonWriter(Stream, Encoding, Boolean) overload where this behavior can be specified.

Version Information

Silverlight

Supported in: 5, 4, 3

Platforms

For a list of the operating systems and browsers that are supported by Silverlight, see Supported Operating Systems and Browsers.