SerializationJsonSerializeObject(Object, Boolean, Boolean, Boolean) Method
Serializes an object to a JSON string.
Namespace: Aliquo.CoreAssembly: Aliquo.Core (in Aliquo.Core.dll) Version: 5.0.9179.22651
public static string JsonSerializeObject(
Object value,
bool indentedFormat = false,
bool microsoftDateFormat = false,
bool nullValueHandling = true
)
Public Shared Function JsonSerializeObject (
value As Object,
Optional indentedFormat As Boolean = false,
Optional microsoftDateFormat As Boolean = false,
Optional nullValueHandling As Boolean = true
) As String
- value Object
- Object to serialize.
- indentedFormat Boolean (Optional)
- Causes child objects to be indented.
- microsoftDateFormat Boolean (Optional)
- Dates are written in the Microsoft JSON format, e.g. "\/Date(1198908717056)\/.
- nullValueHandling Boolean (Optional)
- How null values on .NET objects are handled during serialization and how null values in JSON are handled during deserialization.
StringString with the serialized object.