7 references to FalseValue
System.Text.Json (7)
System\Text\Json\Document\JsonDocument.Parse.cs (1)
677
s_falseLiteral ??= Create(JsonConstants.
FalseValue
.ToArray());
System\Text\Json\Reader\Utf8JsonReader.cs (1)
1066
return ConsumeLiteral(JsonConstants.
FalseValue
, JsonTokenType.False);
System\Text\Json\Reader\Utf8JsonReader.MultiSegment.cs (1)
426
return ConsumeLiteralMultiSegment(JsonConstants.
FalseValue
, JsonTokenType.False);
System\Text\Json\Writer\Utf8JsonWriter.WriteProperties.Literal.cs (3)
150
WriteLiteralHelper(propertyName.EncodedUtf8Bytes, JsonConstants.
FalseValue
);
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)
40
WriteLiteralByOptions(JsonConstants.
FalseValue
);