Class WriteToJsonFileArgs
- Namespace
- SunamoJson.Args
- Assembly
- SunamoJson.dll
Arguments for writing JSON to a file.
public class WriteToJsonFileArgs
- Inheritance
-
WriteToJsonFileArgs
- Inherited Members
- Extension Methods
Properties
Append
Gets or sets a value indicating whether to append to the file instead of overwriting.
public bool Append { get; set; }
Property Value
Formatting
Gets or sets the JSON formatting style.
public Formatting Formatting { get; set; }
Property Value
- Formatting
TwoBackslashToSingle
Gets or sets a value indicating whether to replace double backslashes with single backslashes. Note: This will not work for deserialization from file, as it would convert " to ".
public bool TwoBackslashToSingle { get; set; }