1 write to _trueOrFalse
System.Text.Json (1)
System\Text\Json\Schema\JsonSchema.cs (1)
35private JsonSchema(bool trueOrFalse) { _trueOrFalse = trueOrFalse; }
8 references to _trueOrFalse
System.Text.Json (8)
System\Text\Json\Schema\JsonSchema.cs (8)
37public bool IsTrue => _trueOrFalse is true; 38public bool IsFalse => _trueOrFalse is false; 93if (_trueOrFalse is not null) 130if (_trueOrFalse is not null) 144if (_trueOrFalse is { } boolSchema) 280switch (schema._trueOrFalse) 305Debug.Assert(_trueOrFalse is null, "Schema is not mutable"); 306if (_trueOrFalse is not null)