System.Runtime.InteropServices.JsonMarshal
An unsafe class that provides a set of methods to access the underlying data representations of JSON types.
namespace System.Runtime.InteropServices
{
public static class JsonMarshal
{
public static ReadOnlySpan<byte> GetRawUtf8Value(JsonElement element);
public static ReadOnlySpan<byte> GetRawUtf8PropertyName(JsonProperty property);
}
}