JsonUtilityDeserialize(String, Boolean, Boolean) Method
Deserializes the specified JSON string.
Namespace: Scanjour.Workflow4.BaseAssembly: Scanjour.Workflow4.Base (in Scanjour.Workflow4.Base.dll) Version: 24.4.0.0 (24.4.0.0)
public static Object Deserialize(
string json,
bool typeHandling = false,
bool objectReplace = false
)
Public Shared Function Deserialize (
json As String,
Optional typeHandling As Boolean = false,
Optional objectReplace As Boolean = false
) As Object
public:
static Object^ Deserialize(
String^ json,
bool typeHandling = false,
bool objectReplace = false
)
static member Deserialize :
json : string *
?typeHandling : bool *
?objectReplace : bool
(* Defaults:
let _typeHandling = defaultArg typeHandling false
let _objectReplace = defaultArg objectReplace false
*)
-> Object
- json String
- The JSON string.
- typeHandling Boolean (Optional)
- When true handle type resolution
- objectReplace Boolean (Optional)
- When true handles dynamic structure anonymous types
ObjectDeserialized instance.