Json.Write(Object, TextWriter) 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.
Converts a data object to a string in JavaScript Object Notation (JSON) format and adds the string to the specified TextWriter object.
public static void Write(object value, System.IO.TextWriter writer);
static member Write : obj * System.IO.TextWriter -> unit
Public Shared Sub Write (value As Object, writer As TextWriter)
Parameters
- value
- Object
The data object to convert.
- writer
- TextWriter
The object that contains the converted JSON data.