7 references to TrueValue
System.Text.Json (7)
System\Text\Json\Document\JsonDocument.Parse.cs (1)
680s_trueLiteral ??= Create(JsonConstants.TrueValue.ToArray());
System\Text\Json\Reader\Utf8JsonReader.cs (1)
1070return ConsumeLiteral(JsonConstants.TrueValue, JsonTokenType.True);
System\Text\Json\Reader\Utf8JsonReader.MultiSegment.cs (1)
430return ConsumeLiteralMultiSegment(JsonConstants.TrueValue, JsonTokenType.True);
System\Text\Json\Writer\Utf8JsonWriter.WriteProperties.Literal.cs (3)
145WriteLiteralHelper(propertyName.EncodedUtf8Bytes, JsonConstants.TrueValue); 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)
35WriteLiteralByOptions(JsonConstants.TrueValue);