|
JsonTokenType | GetJsonTokenType (int index) |
|
int | GetArrayLength (int index) |
|
JsonElement | GetArrayIndexElement (int currentIndex, int arrayIndex) |
|
int | GetEndIndex (int index, bool includeEndElement) |
|
ReadOnlyMemory< byte > | GetRootRawValue () |
|
ReadOnlyMemory< byte > | GetRawValue (int index, bool includeQuotes) |
|
string | GetString (int index, JsonTokenType expectedType) |
|
bool | TextEquals (int index, ReadOnlySpan< char > otherText, bool isPropertyName) |
|
bool | TextEquals (int index, ReadOnlySpan< byte > otherUtf8Text, bool isPropertyName, bool shouldUnescape) |
|
string | GetNameOfPropertyValue (int index) |
|
bool | TryGetValue (int index, [NotNullWhen(true)] out byte[] value) |
|
bool | TryGetValue (int index, out sbyte value) |
|
bool | TryGetValue (int index, out byte value) |
|
bool | TryGetValue (int index, out short value) |
|
bool | TryGetValue (int index, out ushort value) |
|
bool | TryGetValue (int index, out int value) |
|
bool | TryGetValue (int index, out uint value) |
|
bool | TryGetValue (int index, out long value) |
|
bool | TryGetValue (int index, out ulong value) |
|
bool | TryGetValue (int index, out double value) |
|
bool | TryGetValue (int index, out float value) |
|
bool | TryGetValue (int index, out decimal value) |
|
bool | TryGetValue (int index, out DateTime value) |
|
bool | TryGetValue (int index, out DateTimeOffset value) |
|
bool | TryGetValue (int index, out Guid value) |
|
string | GetRawValueAsString (int index) |
|
string | GetPropertyRawValueAsString (int valueIndex) |
|
JsonElement | CloneElement (int index) |
|
void | WriteElementTo (int index, Utf8JsonWriter writer) |
|
bool | TryGetNamedPropertyValue (int index, ReadOnlySpan< char > propertyName, out JsonElement value) |
|
bool | TryGetNamedPropertyValue (int index, ReadOnlySpan< byte > propertyName, out JsonElement value) |
|
Definition at line 11 of file JsonDocument.cs.