JsonPathToken
struct JsonPathToken
namespace System.ClientModel.Primitives
{
internal readonly ref struct JsonPathToken
{
public int TokenStartIndex { get; }
public JsonPathTokenType TokenType { get; }
public ReadOnlySpan<byte> ValueSpan { get; }
public JsonPathToken(JsonPathTokenType tokenType, int tokenStartIndex, ReadOnlySpan<byte> valueSpan = default(ReadOnlySpan<byte>))
{
TokenType = tokenType;
ValueSpan = valueSpan;
TokenStartIndex = tokenStartIndex;
}
}
}