7 references to FalseValue
System.Text.Json (7)
System\Text\Json\Document\JsonDocument.Parse.cs (1)
677s_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)
150WriteLiteralHelper(propertyName.EncodedUtf8Bytes, JsonConstants.FalseValue); 199ReadOnlySpan<byte> span = value ? JsonConstants.TrueValue : JsonConstants.FalseValue; 225ReadOnlySpan<byte> span = value ? JsonConstants.TrueValue : JsonConstants.FalseValue;
System\Text\Json\Writer\Utf8JsonWriter.WriteValues.Literal.cs (1)
40WriteLiteralByOptions(JsonConstants.FalseValue);