1 write to _numberOfRowsAndTypeUnion
System.Text.Json (1)
System\Text\Json\Document\JsonDocument.DbRow.cs (1)
70
_numberOfRowsAndTypeUnion
= (int)jsonTokenType << 28;
2 references to _numberOfRowsAndTypeUnion
System.Text.Json (2)
System\Text\Json\Document\JsonDocument.DbRow.cs (2)
48
_numberOfRowsAndTypeUnion
& 0x0FFFFFFF; // Number of rows that the current JSON element occupies within the database
50
internal JsonTokenType TokenType => (JsonTokenType)(unchecked((uint)
_numberOfRowsAndTypeUnion
) >> 28);