[This is preliminary documentation and is subject to change.]
Writes JSON data to the string
Namespace: NFX.Serialization.JSONAssembly: NFX (in NFX.dll) Version: 3.0.0.1 (3.0.0.1)
public static string Write(
Object data,
JSONWritingOptions options = null,
IFormatProvider formatProvider = null
)
public static string Write(
Object data,
JSONWritingOptions options = null,
IFormatProvider formatProvider = null
)
Public Shared Function Write (
data As Object,
Optional options As JSONWritingOptions = Nothing,
Optional formatProvider As IFormatProvider = Nothing
) As String
Public Shared Function Write (
data As Object,
Optional options As JSONWritingOptions = Nothing,
Optional formatProvider As IFormatProvider = Nothing
) As String
public:
static String^ Write(
Object^ data,
JSONWritingOptions^ options = nullptr,
IFormatProvider^ formatProvider = nullptr
)
public:
static String^ Write(
Object^ data,
JSONWritingOptions^ options = nullptr,
IFormatProvider^ formatProvider = nullptr
)
static member Write :
data : Object *
?options : JSONWritingOptions *
?formatProvider : IFormatProvider
(* Defaults:
let _options = defaultArg options null
let _formatProvider = defaultArg formatProvider null
*)
-> string
static member Write :
data : Object *
?options : JSONWritingOptions *
?formatProvider : IFormatProvider
(* Defaults:
let _options = defaultArg options null
let _formatProvider = defaultArg formatProvider null
*)
-> string
Return Value
Type:
String