Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches

◆ Indented

bool System.Text.Json.JsonWriterOptions.Indented
getset

Definition at line 11 of file JsonWriterOptions.cs.

12 {
13 get
14 {
15 return (_optionsMask & 1) != 0;
16 }
17 set
18 {
19 if (value)
20 {
21 _optionsMask |= 1;
22 }
23 else
24 {
25 _optionsMask &= -2;
26 }
27 }
28 }

Referenced by System.Text.Json.Utf8JsonWriter.WriteBase64ByOptions(), System.Text.Json.Utf8JsonWriter.WriteBase64ByOptions(), System.Text.Json.Utf8JsonWriter.WriteBase64ByOptions(), System.Text.Json.Utf8JsonWriter.WriteCommentByOptions(), System.Text.Json.Utf8JsonWriter.WriteCommentByOptions(), System.Text.Json.Utf8JsonWriter.WriteEndSlow(), System.Text.Json.Utf8JsonWriter.WriteLiteralByOptions(), System.Text.Json.Utf8JsonWriter.WriteLiteralByOptions(), System.Text.Json.Utf8JsonWriter.WriteLiteralByOptions(), System.Text.Json.Utf8JsonWriter.WriteNullSection(), System.Text.Json.Utf8JsonWriter.WriteNumberByOptions(), System.Text.Json.Utf8JsonWriter.WriteNumberByOptions(), System.Text.Json.Utf8JsonWriter.WriteNumberByOptions(), System.Text.Json.Utf8JsonWriter.WriteNumberByOptions(), System.Text.Json.Utf8JsonWriter.WriteNumberByOptions(), System.Text.Json.Utf8JsonWriter.WriteNumberByOptions(), System.Text.Json.Utf8JsonWriter.WriteNumberByOptions(), System.Text.Json.Utf8JsonWriter.WriteNumberByOptions(), System.Text.Json.Utf8JsonWriter.WriteNumberByOptions(), System.Text.Json.Utf8JsonWriter.WriteNumberByOptions(), System.Text.Json.Utf8JsonWriter.WriteNumberValue(), System.Text.Json.Utf8JsonWriter.WriteNumberValue(), System.Text.Json.Utf8JsonWriter.WriteNumberValue(), System.Text.Json.Utf8JsonWriter.WriteNumberValue(), System.Text.Json.Utf8JsonWriter.WriteNumberValue(), System.Text.Json.Utf8JsonWriter.WriteNumberValue(), System.Text.Json.Utf8JsonWriter.WritePropertyNameSection(), System.Text.Json.Utf8JsonWriter.WriteStartByOptions(), System.Text.Json.Utf8JsonWriter.WriteStartByOptions(), System.Text.Json.Utf8JsonWriter.WriteStartSlow(), System.Text.Json.Utf8JsonWriter.WriteStringByOptions(), System.Text.Json.Utf8JsonWriter.WriteStringByOptions(), System.Text.Json.Utf8JsonWriter.WriteStringByOptions(), System.Text.Json.Utf8JsonWriter.WriteStringByOptions(), System.Text.Json.Utf8JsonWriter.WriteStringByOptions(), System.Text.Json.Utf8JsonWriter.WriteStringByOptions(), System.Text.Json.Utf8JsonWriter.WriteStringByOptions(), System.Text.Json.Utf8JsonWriter.WriteStringByOptions(), System.Text.Json.Utf8JsonWriter.WriteStringByOptions(), System.Text.Json.Utf8JsonWriter.WriteStringByOptions(), System.Text.Json.Utf8JsonWriter.WriteStringByOptions(), System.Text.Json.Utf8JsonWriter.WriteStringByOptions(), System.Text.Json.Utf8JsonWriter.WriteStringByOptionsPropertyName(), System.Text.Json.Utf8JsonWriter.WriteStringByOptionsPropertyName(), System.Text.Json.Utf8JsonWriter.WriteStringValue(), System.Text.Json.Utf8JsonWriter.WriteStringValue(), and System.Text.Json.Utf8JsonWriter.WriteStringValue().