7 references to TrueValue
System.Text.Json (7)
System\Text\Json\Document\JsonDocument.Parse.cs (1)
680
s_trueLiteral ??= Create(JsonConstants.
TrueValue
.ToArray());
System\Text\Json\Reader\Utf8JsonReader.cs (1)
1070
return ConsumeLiteral(JsonConstants.
TrueValue
, JsonTokenType.True);
System\Text\Json\Reader\Utf8JsonReader.MultiSegment.cs (1)
430
return ConsumeLiteralMultiSegment(JsonConstants.
TrueValue
, JsonTokenType.True);
System\Text\Json\Writer\Utf8JsonWriter.WriteProperties.Literal.cs (3)
145
WriteLiteralHelper(propertyName.EncodedUtf8Bytes, JsonConstants.
TrueValue
);
199
ReadOnlySpan<byte> span = value ? JsonConstants.
TrueValue
: JsonConstants.FalseValue;
225
ReadOnlySpan<byte> span = value ? JsonConstants.
TrueValue
: JsonConstants.FalseValue;
System\Text\Json\Writer\Utf8JsonWriter.WriteValues.Literal.cs (1)
35
WriteLiteralByOptions(JsonConstants.
TrueValue
);