7 references to JsonElement
System.Text.Json (7)
System\Text\Json\Document\JsonDocument.cs (3)
35
public JsonElement RootElement => new
JsonElement
(this, 0);
174
return new
JsonElement
(this, currentIndex + ((arrayIndex + 1) * DbRow.Size));
184
return new
JsonElement
(this, objectOffset);
System\Text\Json\Document\JsonDocument.TryGetProperty.cs (2)
198
value = new
JsonElement
(this, index + DbRow.Size);
216
value = new
JsonElement
(this, index + DbRow.Size);
System\Text\Json\Document\JsonElement.ArrayEnumerator.cs (1)
42
return new
JsonElement
(_target._parent, _curIdx);
System\Text\Json\Document\JsonElement.ObjectEnumerator.cs (1)
41
return new JsonProperty(new
JsonElement
(_target._parent, _curIdx));