8 writes to _isNotPrimitive
System.Text.Json (8)
System\Text\Json\Reader\Utf8JsonReader.cs (4)
223
_isNotPrimitive
= state._isNotPrimitive;
970
_isNotPrimitive
= true;
979
_isNotPrimitive
= true;
1001
_isNotPrimitive
= _tokenType is JsonTokenType.StartObject or JsonTokenType.StartArray;
System\Text\Json\Reader\Utf8JsonReader.MultiSegment.cs (4)
34
_isNotPrimitive
= state._isNotPrimitive;
345
_isNotPrimitive
= true;
354
_isNotPrimitive
= true;
372
_isNotPrimitive
= _tokenType is JsonTokenType.StartObject or JsonTokenType.StartArray;
14 references to _isNotPrimitive
System.Text.Json (14)
System\Text\Json\Reader\Utf8JsonReader.cs (6)
192
isNotPrimitive:
_isNotPrimitive
,
921
if (
_isNotPrimitive
&& IsLastSpan)
1096
if (
_isNotPrimitive
&& IsLastSpan && _tokenType != JsonTokenType.EndArray && _tokenType != JsonTokenType.EndObject)
1221
if (
_isNotPrimitive
)
1231
!
_isNotPrimitive
&&
1233
|| (
_isNotPrimitive
^ (_consumed >= (uint)_buffer.Length)));
System\Text\Json\Reader\Utf8JsonReader.MultiSegment.cs (8)
229
Debug.Assert(
_isNotPrimitive
&& IsLastSpan);
254
if (
_isNotPrimitive
&& IsLastSpan)
264
if (
_isNotPrimitive
&& IsLastSpan)
463
if (
_isNotPrimitive
&& IsLastSpan && _tokenType != JsonTokenType.EndArray && _tokenType != JsonTokenType.EndObject)
469
if (
_isNotPrimitive
&& IsLastSpan && _tokenType != JsonTokenType.EndArray && _tokenType != JsonTokenType.EndObject)
686
if (
_isNotPrimitive
)
696
!
_isNotPrimitive
&&
698
|| (
_isNotPrimitive
^ (_consumed >= (uint)_buffer.Length)));