7 references to FalseValue
System.Text.Json (7)
System\Text\Json\Document\JsonDocument.Parse.cs (1)
668s_falseLiteral ??= Create(JsonConstants.FalseValue.ToArray());
System\Text\Json\Reader\Utf8JsonReader.cs (1)
1066return ConsumeLiteral(JsonConstants.FalseValue, JsonTokenType.False);
System\Text\Json\Reader\Utf8JsonReader.MultiSegment.cs (1)
426return ConsumeLiteralMultiSegment(JsonConstants.FalseValue, JsonTokenType.False);
System\Text\Json\Writer\Utf8JsonWriter.WriteProperties.Literal.cs (3)
147WriteLiteralHelper(propertyName.EncodedUtf8Bytes, JsonConstants.FalseValue); 193ReadOnlySpan<byte> span = value ? JsonConstants.TrueValue : JsonConstants.FalseValue; 219ReadOnlySpan<byte> span = value ? JsonConstants.TrueValue : JsonConstants.FalseValue;
System\Text\Json\Writer\Utf8JsonWriter.WriteValues.Literal.cs (1)
40WriteLiteralByOptions(JsonConstants.FalseValue);