diff --git a/Directory.Packages.props b/Directory.Packages.props index a6460ff45..c9cf77423 100644 --- a/Directory.Packages.props +++ b/Directory.Packages.props @@ -27,7 +27,6 @@ - diff --git a/README.md b/README.md index b59c167e8..30cea70f9 100644 --- a/README.md +++ b/README.md @@ -721,7 +721,7 @@ Performance varies depending on the options used. This is a micro benchmark with | JilString | 553.65 ns | NA | 7.62 | 0.0362 | 152 B | | JilStreamReader | 1,408.46 ns | NA | 19.38 | 0.8450 | 3552 B | -`ÌntKey`, `StringKey`, `Typeless_IntKey`, `Typeless_StringKey` are MessagePack for C# options. All MessagePack for C# options achieve zero memory allocations in the deserialization process. `JsonNetString`/`JilString` is deserialized from strings. `JsonNetStreamReader`/`JilStreamReader` is deserialized from UTF-8 byte arrays using `StreamReader`. Deserialization is normally read from Stream. Thus, it will be restored from byte arrays (or Stream) instead of strings. +`IntKey`, `StringKey`, `Typeless_IntKey`, `Typeless_StringKey` are MessagePack for C# options. All MessagePack for C# options achieve zero memory allocations in the deserialization process. `JsonNetString`/`JilString` is deserialized from strings. `JsonNetStreamReader`/`JilStreamReader` is deserialized from UTF-8 byte arrays using `StreamReader`. Deserialization is normally read from Stream. Thus, it will be restored from byte arrays (or Stream) instead of strings. MessagePack for C# `IntKey` is the fastest. `StringKey` is slower than `IntKey` because matching the character string of property names is required. `IntKey` works by reading the array length, then `for (array length) { binary decode }`. `StringKey` works by reading map length, `for (map length) { decode key, lookup key, binary decode }`, so it requires an additional two steps (decoding of keys and lookups of keys). diff --git a/sandbox/Sandbox/Program.cs b/sandbox/Sandbox/Program.cs index e2112ff14..aef553be5 100644 --- a/sandbox/Sandbox/Program.cs +++ b/sandbox/Sandbox/Program.cs @@ -2,877 +2,38 @@ // Licensed under the MIT license. See LICENSE file in the project root for full license information. using System; -using System.Buffers; -using System.Collections; -using System.Collections.Concurrent; using System.Collections.Generic; using System.Collections.ObjectModel; -using System.Diagnostics; -using System.IO; -using System.IO.Compression; -using System.Linq; -using System.Reflection; -using System.Text; using MessagePack; -using MessagePack.Formatters; -using MessagePack.Internal; -using MessagePack.Resolvers; -using Newtonsoft.Json; -using ProtoBuf; -using SharedData; -using UnityEngine; -using ZeroFormatter; -#pragma warning disable SA1307 // Accessible fields should begin with upper-case letter -#pragma warning disable SA1401 // Fields should be private -#pragma warning disable SA1402 // File may only contain a single type -#pragma warning disable SA1649 // File name should match first type name +Console.WriteLine("foo"); -namespace Sandbox; +//[MessagePackObject] +//public class Foo +//{ +// [Key(0)] +// public T Member { get; set; } +//} -internal class Program -{ - private static readonly MessagePackSerializerOptions LZ4Standard = MessagePackSerializerOptions.Standard.WithCompression(MessagePackCompression.Lz4Block); - - private static void Main(string[] args) - { - // MessagePackSerializer.Serialize(i); - - - } - - private static void Benchmark(T target) - { - const int Iteration = 10000; // 10000 - - var jsonSerializer = new JsonSerializer(); - MsgPack.Serialization.SerializationContext msgpack = MsgPack.Serialization.SerializationContext.Default; - msgpack.GetSerializer().PackSingleObject(target); - MessagePackSerializer.Serialize(target); - MessagePackSerializer.Serialize(target, LZ4Standard); - ZeroFormatter.ZeroFormatterSerializer.Serialize(target); - ProtoBuf.Serializer.Serialize(new MemoryStream(), target); - jsonSerializer.Serialize(new JsonTextWriter(new StringWriter()), target); - - Console.WriteLine(typeof(T).Name + " serialization test"); - Console.WriteLine(); - - Console.WriteLine("Serialize::"); - byte[] data = null; - byte[] data0 = null; - byte[] data1 = null; - byte[] data2 = null; - byte[] data3 = null; - byte[] dataJson = null; - byte[] dataGzipJson = null; - using (new Measure("MsgPack-Cli")) - { - for (int i = 0; i < Iteration; i++) - { - data = msgpack.GetSerializer().PackSingleObject(target); - } - } - - using (new Measure("MessagePack-CSharp")) - { - for (int i = 0; i < Iteration; i++) - { - data0 = MessagePackSerializer.Serialize(target); - } - } - - using (new Measure("MessagePack(LZ4)")) - { - for (int i = 0; i < Iteration; i++) - { - data3 = MessagePackSerializer.Serialize(target, LZ4Standard); - } - } - - using (new Measure("ZeroFormatter")) - { - for (int i = 0; i < Iteration; i++) - { - data1 = ZeroFormatter.ZeroFormatterSerializer.Serialize(target); - } - } - - using (new Measure("JsonNet")) - { - for (int i = 0; i < Iteration; i++) - { - using (var ms = new MemoryStream()) - using (var sw = new StreamWriter(ms, Encoding.UTF8, 1024, true)) - using (var jw = new JsonTextWriter(sw)) - { - jsonSerializer.Serialize(jw, target); - } - } - } - - using (new Measure("JsonNet+Gzip")) - { - for (int i = 0; i < Iteration; i++) - { - using (var ms = new MemoryStream()) - using (var gzip = new GZipStream(ms, CompressionLevel.Fastest)) - using (var sw = new StreamWriter(gzip, Encoding.UTF8, 1024, true)) - using (var jw = new JsonTextWriter(sw)) - { - jsonSerializer.Serialize(jw, target); - } - } - } - - using (new Measure("protobuf-net")) - { - for (int i = 0; i < Iteration; i++) - { - using (var ms = new MemoryStream()) - { - ProtoBuf.Serializer.Serialize(ms, target); - } - } - } - - using (var ms = new MemoryStream()) - { - ProtoBuf.Serializer.Serialize(ms, target); - data2 = ms.ToArray(); - } - - using (var ms = new MemoryStream()) - { - using (var sw = new StreamWriter(ms, Encoding.UTF8, 1024, true)) - using (var jw = new JsonTextWriter(sw)) - { - jsonSerializer.Serialize(jw, target); - } - - dataJson = ms.ToArray(); - } - - using (var ms = new MemoryStream()) - { - using (var gzip = new GZipStream(ms, CompressionLevel.Fastest)) - using (var sw = new StreamWriter(gzip, Encoding.UTF8, 1024, true)) - using (var jw = new JsonTextWriter(sw)) - { - jsonSerializer.Serialize(jw, target); - } - - dataGzipJson = ms.ToArray(); - } - - msgpack.GetSerializer().UnpackSingleObject(data); - MessagePackSerializer.Deserialize(data0); - ZeroFormatterSerializer.Deserialize(data1); - ProtoBuf.Serializer.Deserialize(new MemoryStream(data2)); - MessagePackSerializer.Deserialize(data3, LZ4Standard); - jsonSerializer.Deserialize(new JsonTextReader(new StreamReader(new MemoryStream(dataJson)))); - - Console.WriteLine(); - Console.WriteLine("Deserialize::"); - - using (new Measure("MsgPack-Cli")) - { - for (int i = 0; i < Iteration; i++) - { - msgpack.GetSerializer().UnpackSingleObject(data); - } - } - - using (new Measure("MessagePack-CSharp")) - { - for (int i = 0; i < Iteration; i++) - { - MessagePackSerializer.Deserialize(data0); - } - } - - using (new Measure("MessagePack(LZ4)")) - { - for (int i = 0; i < Iteration; i++) - { - MessagePackSerializer.Deserialize(data3, LZ4Standard); - } - } - - using (new Measure("ZeroFormatter")) - { - for (int i = 0; i < Iteration; i++) - { - ZeroFormatterSerializer.Deserialize(data1); - } - } - - using (new Measure("JsonNet")) - { - for (int i = 0; i < Iteration; i++) - { - using (var ms = new MemoryStream(dataJson)) - using (var sr = new StreamReader(ms, Encoding.UTF8)) - using (var jr = new JsonTextReader(sr)) - { - jsonSerializer.Deserialize(jr); - } - } - } - - using (new Measure("JsonNet+Gzip")) - { - for (int i = 0; i < Iteration; i++) - { - using (var ms = new MemoryStream(dataGzipJson)) - using (var gzip = new GZipStream(ms, CompressionMode.Decompress)) - using (var sr = new StreamReader(gzip, Encoding.UTF8)) - using (var jr = new JsonTextReader(sr)) - { - jsonSerializer.Deserialize(jr); - } - } - } - - using (new Measure("protobuf-net")) - { - for (int i = 0; i < Iteration; i++) - { - using (var ms = new MemoryStream(data2)) - { - ProtoBuf.Serializer.Deserialize(ms); - } - } - } - - Console.WriteLine(); - Console.WriteLine("FileSize::"); - var label = string.Empty; - label = "MsgPack-Cli"; - Console.WriteLine($"{label,20} {data.Length} Byte"); - label = "MessagePack-CSharp"; - Console.WriteLine($"{label,20} {data0.Length} Byte"); - label = "MessagePack(LZ4)"; - Console.WriteLine($"{label,20} {data3.Length} Byte"); - label = "ZeroFormatter"; - Console.WriteLine($"{label,20} {data1.Length} Byte"); - label = "protobuf-net"; - Console.WriteLine($"{label,20} {data2.Length} Byte"); - label = "JsonNet"; - Console.WriteLine($"{label,20} {dataJson.Length} Byte"); - label = "JsonNet+GZip"; - Console.WriteLine($"{label,20} {dataGzipJson.Length} Byte"); - - Console.WriteLine(); - Console.WriteLine(); - } - - private static string ToHumanReadableSize(long size) - { - return ToHumanReadableSize(new long?(size)); - } - - private static string ToHumanReadableSize(long? size) - { - if (size == null) - { - return "NULL"; - } - - double bytes = size.Value; - - if (bytes <= 1024) - { - return bytes.ToString("f2") + " B"; - } - - bytes = bytes / 1024; - if (bytes <= 1024) - { - return bytes.ToString("f2") + " KB"; - } - - bytes = bytes / 1024; - if (bytes <= 1024) - { - return bytes.ToString("f2") + " MB"; - } - - bytes = bytes / 1024; - if (bytes <= 1024) - { - return bytes.ToString("f2") + " GB"; - } - - bytes = bytes / 1024; - if (bytes <= 1024) - { - return bytes.ToString("f2") + " TB"; - } - - bytes = bytes / 1024; - if (bytes <= 1024) - { - return bytes.ToString("f2") + " PB"; - } - - bytes = bytes / 1024; - if (bytes <= 1024) - { - return bytes.ToString("f2") + " EB"; - } - - bytes = bytes / 1024; - return bytes + " ZB"; - } -} - -[ZeroFormattable] -[ProtoBuf.ProtoContract] -[MessagePackObject] -public class Person : IEquatable -{ - [Index(0)] - [Key(0)] - [MsgPack.Serialization.MessagePackMember(0)] - [ProtoMember(1)] - public virtual int Age { get; set; } - - [Index(1)] - [Key(1)] - [MsgPack.Serialization.MessagePackMember(1)] - [ProtoMember(2)] - public virtual string FirstName { get; set; } - - [Index(2)] - [Key(2)] - [MsgPack.Serialization.MessagePackMember(2)] - [ProtoMember(3)] - public virtual string LastName { get; set; } - - [Index(3)] - [MsgPack.Serialization.MessagePackMember(3)] - [Key(3)] - [ProtoMember(4)] - public virtual Sex Sex { get; set; } - - public bool Equals(Person other) - { - return this.Age == other.Age && this.FirstName == other.FirstName && this.LastName == other.LastName && this.Sex == other.Sex; - } -} - -public enum Sex : sbyte -{ - Unknown, - Male, - Female, -} - -public class TestCollection : ICollection -{ - public List internalCollection = new List(); - - public int Count => this.internalCollection.Count; - - public bool IsReadOnly => throw new NotImplementedException(); - - public void Add(T item) - { - this.internalCollection.Add(item); - } - - public void Clear() - { - throw new NotImplementedException(); - } +//[MessagePackObject] +//public class Bar +//{ +// [Key(0)] +// public Foo MemberUserGeneric { get; set; } - public bool Contains(T item) - { - throw new NotImplementedException(); - } +// [Key(1)] +// public System.Collections.Generic.List MemberKnownGeneric { get; set; } +//} - public void CopyTo(T[] array, int arrayIndex) - { - throw new NotImplementedException(); - } - - public IEnumerator GetEnumerator() - { - return this.internalCollection.GetEnumerator(); - } - - public bool Remove(T item) - { - throw new NotImplementedException(); - } - - IEnumerator IEnumerable.GetEnumerator() - { - throw new NotImplementedException(); - } -} [MessagePackObject(true)] -public class Takox -{ -#pragma warning disable SA1300 // Element should begin with upper-case letter - public int hoga { get; set; } - - public int huga { get; set; } - - public int tako { get; set; } -#pragma warning restore SA1300 // Element should begin with upper-case letter -} - -[MessagePackObject] -public class MyClass -{ - // Key is serialization index, it is important for versioning. - [Key(0)] - public int Age { get; set; } - - [Key(1)] - public string FirstName { get; set; } - - [Key(2)] - public string LastName { get; set; } - - // public members and does not serialize target, mark IgnoreMemberttribute - [IgnoreMember] - public string FullName => this.FirstName + this.LastName; -} - -[MessagePackObject(keyAsPropertyName: true)] -public class Sample1 -{ - [Key(0)] - public int Foo { get; set; } - - [Key(1)] - public int Bar { get; set; } -} - -[MessagePackObject] -public class Sample2 -{ - [Key("foo")] - public int Foo { get; set; } - - [Key("bar")] - public int Bar { get; set; } -} - -[MessagePackObject] -public class IntKeySample -{ - [Key(3)] - public int A { get; set; } - - [Key(10)] - public int B { get; set; } -} - -public class ContractlessSample -{ - public int MyProperty1 { get; set; } - - public int MyProperty2 { get; set; } -} - -[MessagePackObject] -public class SampleCallback : IMessagePackSerializationCallbackReceiver -{ - [Key(0)] - public int Key { get; set; } - - public void OnBeforeSerialize() - { - Console.WriteLine("OnBefore"); - } - - public void OnAfterDeserialize() - { - Console.WriteLine("OnAfter"); - } -} - -[MessagePackObject] -public struct Point -{ - [Key(0)] - public readonly int X; - [Key(1)] - public readonly int Y; - - // can't find matched constructor parameter, parameterType mismatch. type:Point parameterIndex:0 parameterType:ValueTuple`2 - public Point((int, int) p) - { - this.X = p.Item1; - this.Y = p.Item2; - } - - [SerializationConstructor] - public Point(int x, int y) - { - this.X = x; - this.Y = y; - } -} - -// mark inheritance types -[MessagePack.Union(0, typeof(FooClass))] -[MessagePack.Union(100, typeof(BarClass))] -public interface IUnionSample -{ -} - -[MessagePackObject] -public class FooClass : IUnionSample +public class Tako { - [Key(0)] - public int XYZ { get; set; } -} - -[MessagePackObject] -public class BarClass : IUnionSample -{ - [Key(0)] - public string OPQ { get; set; } -} - -[MessagePackFormatter(typeof(CustomObjectFormatter))] -public class CustomObject -{ - private string internalId; - - public CustomObject() - { - this.internalId = Guid.NewGuid().ToString(); - } - - // serialize/deserialize private field. - internal class CustomObjectFormatter : IMessagePackFormatter - { - public void Serialize(ref MessagePackWriter writer, CustomObject value, MessagePackSerializerOptions options) - { - options.Resolver.GetFormatterWithVerify().Serialize(ref writer, value.internalId, options); - } - - public CustomObject Deserialize(ref MessagePackReader reader, MessagePackSerializerOptions options) - { - var id = options.Resolver.GetFormatterWithVerify().Deserialize(ref reader, options); - return new CustomObject { internalId = id }; - } - } -} - -public interface IEntity -{ - string Name { get; } -} - -public class Event : IEntity -{ - public Event(string name) - { - this.Name = name; - } - - public string Name { get; } -} - -public class Holder -{ - public Holder(IEntity entity) - { - this.Entity = entity; - } - - public IEntity Entity { get; } -} - -public class Dummy___ -{ - public MethodBase MyProperty { get; set; } -} - -[MessagePackObject] -public class Callback1 : IMessagePackSerializationCallbackReceiver -{ - [Key(0)] - public int X { get; set; } - - [IgnoreMember] - public bool CalledBefore { get; private set; } - - [IgnoreMember] - public bool CalledAfter { get; private set; } - - public Callback1(int x) - { - } - - public void OnBeforeSerialize() - { - this.CalledBefore = true; - } - - public void OnAfterDeserialize() - { - this.CalledAfter = true; - } -} - -[MessagePackObject] -public class SimpleIntKeyData -{ - [Key(0)] - ////[MessagePackFormatter(typeof(OreOreFormatter))] - public int Prop1 { get; set; } - - [Key(1)] - public ByteEnum Prop2 { get; set; } - - [Key(2)] - public string Prop3 { get; set; } - - [Key(3)] - public SimpleStringKeyData Prop4 { get; set; } - - [Key(4)] - public SimpleStructIntKeyData Prop5 { get; set; } - - [Key(5)] - public SimpleStructStringKeyData Prop6 { get; set; } - - [Key(6)] - public byte[] BytesSpecial { get; set; } - - ////[Key(7)] - ////[MessagePackFormatter(typeof(OreOreFormatter2), 100, "hogehoge")] - ////[MessagePackFormatter(typeof(OreOreFormatter))] - ////public int Prop7 { get; set; } -} - -[MessagePack.MessagePackObject(true)] -public class StringKeySerializerTarget2 -{ - public int TotalQuestions { get; set; } - - public int TotalUnanswered { get; set; } - - public int QuestionsPerMinute { get; set; } - - public int AnswersPerMinute { get; set; } - - public int TotalVotes { get; set; } - - public int BadgesPerMinute { get; set; } - - public int NewActiveUsers { get; set; } - - public int ApiRevision { get; set; } - - public int Site { get; set; } -} - -internal struct Measure : IDisposable -{ - private string label; - private Stopwatch sw; - - public Measure(string label) - { - this.label = label; - System.GC.Collect(2, GCCollectionMode.Forced, blocking: true); - this.sw = Stopwatch.StartNew(); - } - - public void Dispose() - { - this.sw.Stop(); - Console.WriteLine($"{this.label,20} {this.sw.Elapsed.TotalMilliseconds} ms"); - - System.GC.Collect(2, GCCollectionMode.Forced, blocking: true); - } -} - -public class SerializerTarget -{ - public int MyProperty1 { get; set; } - - public int MyProperty2 { get; set; } - - public int MyProperty3 { get; set; } - - public int MyProperty4 { get; set; } - - public int MyProperty5 { get; set; } - - public int MyProperty6 { get; set; } - - public int MyProperty7 { get; set; } - - public int MyProperty8 { get; set; } - - public int MyProperty9 { get; set; } -} - -// design concept sketch of Union. -[MessagePack.Union(0, typeof(HogeMoge1))] -[MessagePack.Union(1, typeof(HogeMoge2))] -public interface IHogeMoge -{ -} - -public class HogeMoge1 -{ -} - -public class HogeMoge2 -{ -} - -[MessagePackObject] -public class TestObject -{ - [MessagePackObject] - public class PrimitiveObject - { -#pragma warning disable SA1310 // Field names should not contain underscore - [Key(0)] - public int v_int; - - [Key(1)] - public string v_str; - - [Key(2)] - public float v_float; - - [Key(3)] - public bool v_bool; -#pragma warning restore SA1310 // Field names should not contain underscore - - public PrimitiveObject(int vi, string vs, float vf, bool vb) - { - this.v_int = vi; - this.v_str = vs; - this.v_float = vf; - this.v_bool = vb; - } - } - - [Key(0)] - public PrimitiveObject[] objectArray; - - [Key(1)] - public List objectList; - - [Key(2)] - public Dictionary objectMap; - - public void CreateArray(int num) - { - this.objectArray = new PrimitiveObject[num]; - for (int i = 0; i < num; i++) - { - this.objectArray[i] = new PrimitiveObject(i, i.ToString(), (float)i, i % 2 == 0 ? true : false); - } - } - - public void CreateList(int num) - { - this.objectList = new List(num); - for (int i = 0; i < num; i++) - { - this.objectList.Add(new PrimitiveObject(i, i.ToString(), (float)i, i % 2 == 0 ? true : false)); - } - } - - public void CreateMap(int num) - { - this.objectMap = new Dictionary(num); - for (int i = 0; i < num; i++) - { - this.objectMap.Add(i.ToString(), new PrimitiveObject(i, i.ToString(), (float)i, i % 2 == 0 ? true : false)); - } - } - - // I only tested with array - public static TestObject TestBuild() - { - TestObject to = new TestObject(); - to.CreateArray(1000000); - - return to; - } -} - -public class HogeMogeFormatter : IMessagePackFormatter -{ - // Type to Key... - private static readonly Dictionary> Map = new Dictionary> - { - { typeof(HogeMoge1), new KeyValuePair(0, 0) }, - { typeof(HogeMoge2), new KeyValuePair(1, 1) }, - }; - - // If 0~10 don't need it. - private static readonly Dictionary KeyToJumpTable = new Dictionary - { - { 0, 0 }, - { 1, 1 }, - }; - - public void Serialize(ref MessagePackWriter writer, IHogeMoge value, MessagePackSerializerOptions options) - { - KeyValuePair key; - if (Map.TryGetValue(value.GetType(), out key)) - { - writer.WriteArrayHeader(2); - writer.WriteInt32(key.Key); - - switch (key.Value) - { - case 0: - options.Resolver.GetFormatterWithVerify().Serialize(ref writer, (HogeMoge1)value, options); - break; - case 1: - options.Resolver.GetFormatterWithVerify().Serialize(ref writer, (HogeMoge2)value, options); - break; - default: - break; - } - - return; - } - - writer.WriteNil(); - } - - public IHogeMoge Deserialize(ref MessagePackReader reader, MessagePackSerializerOptions options) - { - // TODO:array header... - var key = reader.ReadInt32(); + public IReadOnlySet MyProperty1 { get; set; } - switch (key) - { - case 0: - { - HogeMoge1 result = options.Resolver.GetFormatterWithVerify().Deserialize(ref reader, options); - return (IHogeMoge)result; - } + public PriorityQueue MyProperty2 { get; set; } - case 1: - { - HogeMoge2 result = options.Resolver.GetFormatterWithVerify().Deserialize(ref reader, options); - return (IHogeMoge)result; - } + public OrderedDictionary MyProperty3 { get; set; } - default: - { - throw new NotImplementedException(); - } - } - } + public ReadOnlySet MyProperty4 { get; set; } } diff --git a/sandbox/Sandbox/Sandbox.csproj b/sandbox/Sandbox/Sandbox.csproj index fbb77ee6a..f74b899d2 100644 --- a/sandbox/Sandbox/Sandbox.csproj +++ b/sandbox/Sandbox/Sandbox.csproj @@ -7,6 +7,14 @@ True + + 1591;1701;1702;SA1649;SA1503;SA1402;SA1115 + + + + 1591;1701;1702;SA1649;SA1503;SA1402;SA1115 + + diff --git a/src/MessagePack.SourceGenerator/CodeAnalysis/TypeCollector.cs b/src/MessagePack.SourceGenerator/CodeAnalysis/TypeCollector.cs index c742bd8d4..f8150e02a 100644 --- a/src/MessagePack.SourceGenerator/CodeAnalysis/TypeCollector.cs +++ b/src/MessagePack.SourceGenerator/CodeAnalysis/TypeCollector.cs @@ -160,6 +160,14 @@ public class TypeCollector { "System.Collections.ObjectModel.ReadOnlyDictionary<,>", "MsgPack::Formatters.ReadOnlyDictionaryFormatter" }, { "System.Collections.Generic.IReadOnlyDictionary<,>", "MsgPack::Formatters.InterfaceReadOnlyDictionaryFormatter" }, { "System.Collections.Concurrent.ConcurrentDictionary<,>", "MsgPack::Formatters.ConcurrentDictionaryFormatter" }, + // NET5 + { "System.Collections.Generic.IReadOnlySet<>", "MsgPack::Formatters.InterfaceReadOnlySetFormatter" }, + // NET6 + { "System.Collections.Generic.PriorityQueue<,>", "MsgPack::Formatters.PriorityQueueFormatter" }, + // NET9 + { "System.Collections.Generic.OrderedDictionary<,>", "MsgPack::Formatters.OrderedDictionaryFormatter" }, + { "System.Collections.ObjectModel.ReadOnlySet<>", "MsgPack::Formatters.ReadOnlySetFormatter" }, + { "System.Lazy<>", "MsgPack::Formatters.LazyFormatter" }, { "System.Threading.Tasks<>", "MsgPack::Formatters.TaskValueFormatter" }, @@ -385,16 +393,11 @@ private void CollectEnum(INamedTypeSymbol type, ISymbol enumUnderlyingType) private void CollectUnion(INamedTypeSymbol type) { - if (!options.IsGeneratingSource) - { - // In analyzer-only mode, this method doesn't work. - return; - } - ImmutableArray[] unionAttrs = type.GetAttributes().Where(x => x.AttributeClass.ApproximatelyEqual(this.typeReferences.UnionAttribute)).Select(x => x.ConstructorArguments).ToArray(); if (unionAttrs.Length == 0) { this.reportDiagnostic?.Invoke(Diagnostic.Create(MsgPack00xMessagePackAnalyzer.UnionAttributeRequired, type.DeclaringSyntaxReferences.FirstOrDefault()?.GetSyntax().GetLocation())); + return; } // 0, Int 1, SubType @@ -412,9 +415,16 @@ private void CollectUnion(INamedTypeSymbol type) return new UnionSubTypeInfo(key, typeName); } + var subTypes = unionAttrs.Select(UnionSubTypeInfoSelector).Where(i => i is not null).OrderBy(x => x!.Key).ToImmutableArray(); + + if (!options.IsGeneratingSource) + { + return; + } + var info = UnionSerializationInfo.Create( type, - unionAttrs.Select(UnionSubTypeInfoSelector).Where(i => i is not null).OrderBy(x => x!.Key).ToImmutableArray()!, + subTypes!, this.options.Generator.Resolver); this.collectedUnionInfo.Add(info); @@ -708,11 +718,25 @@ private void CheckValidMessagePackFormatterAttribute(AttributeData formatterAttr // Examine properties set on the attribute such that we can discern whether they were explicitly set or not. // This is useful when we have assembly-level attributes or other environmentally-controlled defaults that the attribute may override either direction. bool? suppressSourceGeneration = (bool?)contractAttr?.NamedArguments.FirstOrDefault(kvp => kvp.Key == Constants.SuppressSourceGenerationPropertyName).Value.Value; + + // Do not source generate the formatter for this type if the attribute opted out. + if (suppressSourceGeneration is true) + { + // Skip any source generation + return null; + } + bool? allowPrivateAttribute = (bool?)contractAttr?.NamedArguments.FirstOrDefault(kvp => kvp.Key == Constants.AllowPrivatePropertyName).Value.Value; if (contractAttr is null) { - ////this.reportDiagnostic?.Invoke(Diagnostic.Create(MsgPack00xMessagePackAnalyzer.TypeMustBeMessagePackObject, ((BaseTypeDeclarationSyntax)type.DeclaringSyntaxReferences[0].GetSyntax()).Identifier.GetLocation(), type.ToDisplayString(SymbolDisplayFormat.FullyQualifiedFormat))); + if (this.reportDiagnostic != null) + { + var diagnostics = Diagnostic.Create(MsgPack00xMessagePackAnalyzer.TypeMustBeMessagePackObject, ((BaseTypeDeclarationSyntax)formattedType.DeclaringSyntaxReferences[0].GetSyntax()).Identifier.GetLocation(), formattedType.ToDisplayString(SymbolDisplayFormat.FullyQualifiedFormat)); + this.reportDiagnostic.Invoke(diagnostics); + } + + return null; } bool isIntKey = true; @@ -1365,13 +1389,6 @@ void ReportNonUniqueNameIfApplicable(ISymbol item, string stringKey) } } - // Do not source generate the formatter for this type if the attribute opted out. - if (suppressSourceGeneration is true) - { - // Skip any source generation - return null; - } - // If any property had a private setter and does not appear in the deserializing constructor signature, // we'll need a nested formatter. foreach (IPropertySymbol property in nestedFormatterRequiredIfPropertyIsNotSetByDeserializingCtor) diff --git a/src/MessagePack.UnityClient/Assets/Scripts/MessagePack/package.json b/src/MessagePack.UnityClient/Assets/Scripts/MessagePack/package.json index 3458dec54..069d8de73 100644 --- a/src/MessagePack.UnityClient/Assets/Scripts/MessagePack/package.json +++ b/src/MessagePack.UnityClient/Assets/Scripts/MessagePack/package.json @@ -1,7 +1,7 @@ { "name": "com.github.messagepack-csharp", "displayName": "MessagePack", - "version": "3.1.0", + "version": "3.1.1", "unity": "2021.3", "description": "Extremely Fast MessagePack Serializer for C#.", "keywords": [ diff --git a/src/MessagePack/MessagePack.csproj b/src/MessagePack/MessagePack.csproj index 20cfaebd3..df65b26a4 100644 --- a/src/MessagePack/MessagePack.csproj +++ b/src/MessagePack/MessagePack.csproj @@ -14,12 +14,6 @@ - - - - - - diff --git a/src/MessagePack/Resolvers/StandardResolver.cs b/src/MessagePack/Resolvers/StandardResolver.cs index 35325f15a..cb6a8e92a 100644 --- a/src/MessagePack/Resolvers/StandardResolver.cs +++ b/src/MessagePack/Resolvers/StandardResolver.cs @@ -259,7 +259,7 @@ namespace MessagePack.Internal internal static class StandardResolverHelper { public static readonly IFormatterResolver[] DefaultResolvers = DynamicAssembly.AvoidDynamicCode - ? [BuiltinResolver.Instance, AttributeFormatterResolver.Instance, SourceGeneratedFormatterResolver.Instance, ImmutableCollection.ImmutableCollectionResolver.Instance, CompositeResolver.Create(ExpandoObjectFormatter.Instance)] + ? [BuiltinResolver.Instance, AttributeFormatterResolver.Instance, SourceGeneratedFormatterResolver.Instance, ImmutableCollection.ImmutableCollectionResolver.Instance, CompositeResolver.Create(ExpandoObjectFormatter.Instance), DynamicGenericResolver.Instance] : [BuiltinResolver.Instance, AttributeFormatterResolver.Instance, SourceGeneratedFormatterResolver.Instance, ImmutableCollection.ImmutableCollectionResolver.Instance, CompositeResolver.Create(ExpandoObjectFormatter.Instance), DynamicGenericResolver.Instance, DynamicUnionResolver.Instance]; } } diff --git a/src/MessagePack/net472/PublicAPI.Shipped.txt b/src/MessagePack/net472/PublicAPI.Shipped.txt deleted file mode 100644 index 28bbb5f11..000000000 --- a/src/MessagePack/net472/PublicAPI.Shipped.txt +++ /dev/null @@ -1,1299 +0,0 @@ -#nullable enable -MessagePack.ExtensionHeader -MessagePack.ExtensionHeader.ExtensionHeader(sbyte typeCode, int length) -> void -MessagePack.ExtensionHeader.ExtensionHeader(sbyte typeCode, uint length) -> void -MessagePack.ExtensionHeader.Length.get -> uint -MessagePack.ExtensionHeader.TypeCode.get -> sbyte -MessagePack.ExtensionResult -MessagePack.ExtensionResult.Data.get -> System.Buffers.ReadOnlySequence -MessagePack.ExtensionResult.ExtensionResult(sbyte typeCode, System.Buffers.ReadOnlySequence data) -> void -MessagePack.ExtensionResult.ExtensionResult(sbyte typeCode, System.Memory data) -> void -MessagePack.ExtensionResult.Header.get -> MessagePack.ExtensionHeader -MessagePack.ExtensionResult.TypeCode.get -> sbyte -MessagePack.FormatterNotRegisteredException -MessagePack.FormatterNotRegisteredException.FormatterNotRegisteredException(string? message) -> void -MessagePack.FormatterResolverExtensions -MessagePack.Formatters.ArrayFormatter -MessagePack.Formatters.ArrayFormatter.ArrayFormatter() -> void -MessagePack.Formatters.ArrayFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> T[]? -MessagePack.Formatters.ArrayFormatter.Serialize(ref MessagePack.MessagePackWriter writer, T[]? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.ArraySegmentFormatter -MessagePack.Formatters.ArraySegmentFormatter.ArraySegmentFormatter() -> void -MessagePack.Formatters.ArraySegmentFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> System.ArraySegment -MessagePack.Formatters.ArraySegmentFormatter.Serialize(ref MessagePack.MessagePackWriter writer, System.ArraySegment value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.BigIntegerFormatter -MessagePack.Formatters.BigIntegerFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> System.Numerics.BigInteger -MessagePack.Formatters.BigIntegerFormatter.Serialize(ref MessagePack.MessagePackWriter writer, System.Numerics.BigInteger value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.BitArrayFormatter -MessagePack.Formatters.BitArrayFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> System.Collections.BitArray? -MessagePack.Formatters.BitArrayFormatter.Serialize(ref MessagePack.MessagePackWriter writer, System.Collections.BitArray? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.BooleanArrayFormatter -MessagePack.Formatters.BooleanArrayFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> bool[]? -MessagePack.Formatters.BooleanArrayFormatter.Serialize(ref MessagePack.MessagePackWriter writer, bool[]? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.BooleanFormatter -MessagePack.Formatters.BooleanFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> bool -MessagePack.Formatters.BooleanFormatter.Serialize(ref MessagePack.MessagePackWriter writer, bool value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.ByteArrayFormatter -MessagePack.Formatters.ByteArrayFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> byte[]? -MessagePack.Formatters.ByteArrayFormatter.Serialize(ref MessagePack.MessagePackWriter writer, byte[]? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.ByteArraySegmentFormatter -MessagePack.Formatters.ByteArraySegmentFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> System.ArraySegment -MessagePack.Formatters.ByteArraySegmentFormatter.Serialize(ref MessagePack.MessagePackWriter writer, System.ArraySegment value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.ByteFormatter -MessagePack.Formatters.ByteFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> byte -MessagePack.Formatters.ByteFormatter.Serialize(ref MessagePack.MessagePackWriter writer, byte value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.CharArrayFormatter -MessagePack.Formatters.CharArrayFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> char[]? -MessagePack.Formatters.CharArrayFormatter.Serialize(ref MessagePack.MessagePackWriter writer, char[]? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.CharFormatter -MessagePack.Formatters.CharFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> char -MessagePack.Formatters.CharFormatter.Serialize(ref MessagePack.MessagePackWriter writer, char value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.CollectionFormatterBase -MessagePack.Formatters.CollectionFormatterBase.CollectionFormatterBase() -> void -MessagePack.Formatters.CollectionFormatterBase -MessagePack.Formatters.CollectionFormatterBase.CollectionFormatterBase() -> void -MessagePack.Formatters.CollectionFormatterBase -MessagePack.Formatters.CollectionFormatterBase.CollectionFormatterBase() -> void -MessagePack.Formatters.CollectionFormatterBase.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> TCollection? -MessagePack.Formatters.CollectionFormatterBase.Serialize(ref MessagePack.MessagePackWriter writer, TCollection? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.ComplexFormatter -MessagePack.Formatters.ComplexFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> System.Numerics.Complex -MessagePack.Formatters.ComplexFormatter.Serialize(ref MessagePack.MessagePackWriter writer, System.Numerics.Complex value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.ConcurrentBagFormatter -MessagePack.Formatters.ConcurrentBagFormatter.ConcurrentBagFormatter() -> void -MessagePack.Formatters.ConcurrentDictionaryFormatter -MessagePack.Formatters.ConcurrentDictionaryFormatter.ConcurrentDictionaryFormatter() -> void -MessagePack.Formatters.ConcurrentQueueFormatter -MessagePack.Formatters.ConcurrentQueueFormatter.ConcurrentQueueFormatter() -> void -MessagePack.Formatters.ConcurrentStackFormatter -MessagePack.Formatters.ConcurrentStackFormatter.ConcurrentStackFormatter() -> void -MessagePack.Formatters.DateTimeArrayFormatter -MessagePack.Formatters.DateTimeArrayFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> System.DateTime[]? -MessagePack.Formatters.DateTimeArrayFormatter.Serialize(ref MessagePack.MessagePackWriter writer, System.DateTime[]? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.DateTimeFormatter -MessagePack.Formatters.DateTimeFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> System.DateTime -MessagePack.Formatters.DateTimeFormatter.Serialize(ref MessagePack.MessagePackWriter writer, System.DateTime value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.DateTimeOffsetFormatter -MessagePack.Formatters.DateTimeOffsetFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> System.DateTimeOffset -MessagePack.Formatters.DateTimeOffsetFormatter.Serialize(ref MessagePack.MessagePackWriter writer, System.DateTimeOffset value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.DecimalFormatter -MessagePack.Formatters.DecimalFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> decimal -MessagePack.Formatters.DecimalFormatter.Serialize(ref MessagePack.MessagePackWriter writer, decimal value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.DictionaryFormatter -MessagePack.Formatters.DictionaryFormatter.DictionaryFormatter() -> void -MessagePack.Formatters.DictionaryFormatterBase -MessagePack.Formatters.DictionaryFormatterBase.DictionaryFormatterBase() -> void -MessagePack.Formatters.DictionaryFormatterBase -MessagePack.Formatters.DictionaryFormatterBase.DictionaryFormatterBase() -> void -MessagePack.Formatters.DictionaryFormatterBase -MessagePack.Formatters.DictionaryFormatterBase.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> TDictionary? -MessagePack.Formatters.DictionaryFormatterBase.DictionaryFormatterBase() -> void -MessagePack.Formatters.DictionaryFormatterBase.Serialize(ref MessagePack.MessagePackWriter writer, TDictionary? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.DoubleArrayFormatter -MessagePack.Formatters.DoubleArrayFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> double[]? -MessagePack.Formatters.DoubleArrayFormatter.Serialize(ref MessagePack.MessagePackWriter writer, double[]? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.DoubleFormatter -MessagePack.Formatters.DoubleFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> double -MessagePack.Formatters.DoubleFormatter.Serialize(ref MessagePack.MessagePackWriter writer, double value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.DynamicObjectTypeFallbackFormatter -MessagePack.Formatters.DynamicObjectTypeFallbackFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> object? -MessagePack.Formatters.DynamicObjectTypeFallbackFormatter.Serialize(ref MessagePack.MessagePackWriter writer, object? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.EnumAsStringFormatter -MessagePack.Formatters.EnumAsStringFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> T -MessagePack.Formatters.EnumAsStringFormatter.EnumAsStringFormatter() -> void -MessagePack.Formatters.EnumAsStringFormatter.Serialize(ref MessagePack.MessagePackWriter writer, T value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.ForceByteBlockFormatter -MessagePack.Formatters.ForceByteBlockFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> byte -MessagePack.Formatters.ForceByteBlockFormatter.Serialize(ref MessagePack.MessagePackWriter writer, byte value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.ForceInt16BlockArrayFormatter -MessagePack.Formatters.ForceInt16BlockArrayFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> short[]? -MessagePack.Formatters.ForceInt16BlockArrayFormatter.Serialize(ref MessagePack.MessagePackWriter writer, short[]? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.ForceInt16BlockFormatter -MessagePack.Formatters.ForceInt16BlockFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> short -MessagePack.Formatters.ForceInt16BlockFormatter.Serialize(ref MessagePack.MessagePackWriter writer, short value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.ForceInt32BlockArrayFormatter -MessagePack.Formatters.ForceInt32BlockArrayFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> int[]? -MessagePack.Formatters.ForceInt32BlockArrayFormatter.Serialize(ref MessagePack.MessagePackWriter writer, int[]? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.ForceInt32BlockFormatter -MessagePack.Formatters.ForceInt32BlockFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> int -MessagePack.Formatters.ForceInt32BlockFormatter.Serialize(ref MessagePack.MessagePackWriter writer, int value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.ForceInt64BlockArrayFormatter -MessagePack.Formatters.ForceInt64BlockArrayFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> long[]? -MessagePack.Formatters.ForceInt64BlockArrayFormatter.Serialize(ref MessagePack.MessagePackWriter writer, long[]? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.ForceInt64BlockFormatter -MessagePack.Formatters.ForceInt64BlockFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> long -MessagePack.Formatters.ForceInt64BlockFormatter.Serialize(ref MessagePack.MessagePackWriter writer, long value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.ForceSByteBlockArrayFormatter -MessagePack.Formatters.ForceSByteBlockArrayFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> sbyte[]? -MessagePack.Formatters.ForceSByteBlockArrayFormatter.Serialize(ref MessagePack.MessagePackWriter writer, sbyte[]? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.ForceSByteBlockFormatter -MessagePack.Formatters.ForceSByteBlockFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> sbyte -MessagePack.Formatters.ForceSByteBlockFormatter.Serialize(ref MessagePack.MessagePackWriter writer, sbyte value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.ForceUInt16BlockArrayFormatter -MessagePack.Formatters.ForceUInt16BlockArrayFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> ushort[]? -MessagePack.Formatters.ForceUInt16BlockArrayFormatter.Serialize(ref MessagePack.MessagePackWriter writer, ushort[]? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.ForceUInt16BlockFormatter -MessagePack.Formatters.ForceUInt16BlockFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> ushort -MessagePack.Formatters.ForceUInt16BlockFormatter.Serialize(ref MessagePack.MessagePackWriter writer, ushort value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.ForceUInt32BlockArrayFormatter -MessagePack.Formatters.ForceUInt32BlockArrayFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> uint[]? -MessagePack.Formatters.ForceUInt32BlockArrayFormatter.Serialize(ref MessagePack.MessagePackWriter writer, uint[]? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.ForceUInt32BlockFormatter -MessagePack.Formatters.ForceUInt32BlockFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> uint -MessagePack.Formatters.ForceUInt32BlockFormatter.Serialize(ref MessagePack.MessagePackWriter writer, uint value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.ForceUInt64BlockArrayFormatter -MessagePack.Formatters.ForceUInt64BlockArrayFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> ulong[]? -MessagePack.Formatters.ForceUInt64BlockArrayFormatter.Serialize(ref MessagePack.MessagePackWriter writer, ulong[]? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.ForceUInt64BlockFormatter -MessagePack.Formatters.ForceUInt64BlockFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> ulong -MessagePack.Formatters.ForceUInt64BlockFormatter.Serialize(ref MessagePack.MessagePackWriter writer, ulong value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.FourDimensionalArrayFormatter -MessagePack.Formatters.FourDimensionalArrayFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> T[,,,]? -MessagePack.Formatters.FourDimensionalArrayFormatter.FourDimensionalArrayFormatter() -> void -MessagePack.Formatters.FourDimensionalArrayFormatter.Serialize(ref MessagePack.MessagePackWriter writer, T[,,,]? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.GenericCollectionFormatter -MessagePack.Formatters.GenericCollectionFormatter.GenericCollectionFormatter() -> void -MessagePack.Formatters.GenericDictionaryFormatter -MessagePack.Formatters.GenericDictionaryFormatter.GenericDictionaryFormatter() -> void -MessagePack.Formatters.GenericEnumFormatter -MessagePack.Formatters.GenericEnumFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> T -MessagePack.Formatters.GenericEnumFormatter.GenericEnumFormatter() -> void -MessagePack.Formatters.GenericEnumFormatter.Serialize(ref MessagePack.MessagePackWriter writer, T value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.GuidFormatter -MessagePack.Formatters.GuidFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> System.Guid -MessagePack.Formatters.GuidFormatter.Serialize(ref MessagePack.MessagePackWriter writer, System.Guid value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.HashSetFormatter -MessagePack.Formatters.HashSetFormatter.HashSetFormatter() -> void -MessagePack.Formatters.IMessagePackFormatter -MessagePack.Formatters.IMessagePackFormatter -MessagePack.Formatters.IMessagePackFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> T -MessagePack.Formatters.IMessagePackFormatter.Serialize(ref MessagePack.MessagePackWriter writer, T value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.IgnoreFormatter -MessagePack.Formatters.IgnoreFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> T? -MessagePack.Formatters.IgnoreFormatter.IgnoreFormatter() -> void -MessagePack.Formatters.IgnoreFormatter.Serialize(ref MessagePack.MessagePackWriter writer, T? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.Int16ArrayFormatter -MessagePack.Formatters.Int16ArrayFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> short[]? -MessagePack.Formatters.Int16ArrayFormatter.Serialize(ref MessagePack.MessagePackWriter writer, short[]? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.Int16Formatter -MessagePack.Formatters.Int16Formatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> short -MessagePack.Formatters.Int16Formatter.Serialize(ref MessagePack.MessagePackWriter writer, short value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.Int32ArrayFormatter -MessagePack.Formatters.Int32ArrayFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> int[]? -MessagePack.Formatters.Int32ArrayFormatter.Serialize(ref MessagePack.MessagePackWriter writer, int[]? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.Int32Formatter -MessagePack.Formatters.Int32Formatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> int -MessagePack.Formatters.Int32Formatter.Serialize(ref MessagePack.MessagePackWriter writer, int value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.Int64ArrayFormatter -MessagePack.Formatters.Int64ArrayFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> long[]? -MessagePack.Formatters.Int64ArrayFormatter.Serialize(ref MessagePack.MessagePackWriter writer, long[]? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.Int64Formatter -MessagePack.Formatters.Int64Formatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> long -MessagePack.Formatters.Int64Formatter.Serialize(ref MessagePack.MessagePackWriter writer, long value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.InterfaceCollectionFormatter -MessagePack.Formatters.InterfaceCollectionFormatter.InterfaceCollectionFormatter() -> void -MessagePack.Formatters.InterfaceDictionaryFormatter -MessagePack.Formatters.InterfaceDictionaryFormatter.InterfaceDictionaryFormatter() -> void -MessagePack.Formatters.InterfaceEnumerableFormatter -MessagePack.Formatters.InterfaceEnumerableFormatter.InterfaceEnumerableFormatter() -> void -MessagePack.Formatters.InterfaceGroupingFormatter -MessagePack.Formatters.InterfaceGroupingFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> System.Linq.IGrouping? -MessagePack.Formatters.InterfaceGroupingFormatter.InterfaceGroupingFormatter() -> void -MessagePack.Formatters.InterfaceGroupingFormatter.Serialize(ref MessagePack.MessagePackWriter writer, System.Linq.IGrouping? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.InterfaceListFormatter -MessagePack.Formatters.InterfaceListFormatter.InterfaceListFormatter() -> void -MessagePack.Formatters.InterfaceLookupFormatter -MessagePack.Formatters.InterfaceLookupFormatter.InterfaceLookupFormatter() -> void -MessagePack.Formatters.InterfaceReadOnlyCollectionFormatter -MessagePack.Formatters.InterfaceReadOnlyCollectionFormatter.InterfaceReadOnlyCollectionFormatter() -> void -MessagePack.Formatters.InterfaceReadOnlyDictionaryFormatter -MessagePack.Formatters.InterfaceReadOnlyDictionaryFormatter.InterfaceReadOnlyDictionaryFormatter() -> void -MessagePack.Formatters.InterfaceReadOnlyListFormatter -MessagePack.Formatters.InterfaceReadOnlyListFormatter.InterfaceReadOnlyListFormatter() -> void -MessagePack.Formatters.InterfaceSetFormatter -MessagePack.Formatters.InterfaceSetFormatter.InterfaceSetFormatter() -> void -MessagePack.Formatters.KeyValuePairFormatter -MessagePack.Formatters.KeyValuePairFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> System.Collections.Generic.KeyValuePair -MessagePack.Formatters.KeyValuePairFormatter.KeyValuePairFormatter() -> void -MessagePack.Formatters.KeyValuePairFormatter.Serialize(ref MessagePack.MessagePackWriter writer, System.Collections.Generic.KeyValuePair value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.LazyFormatter -MessagePack.Formatters.LazyFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> System.Lazy? -MessagePack.Formatters.LazyFormatter.LazyFormatter() -> void -MessagePack.Formatters.LazyFormatter.Serialize(ref MessagePack.MessagePackWriter writer, System.Lazy? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.LinkedListFormatter -MessagePack.Formatters.LinkedListFormatter.LinkedListFormatter() -> void -MessagePack.Formatters.ListFormatter -MessagePack.Formatters.ListFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> System.Collections.Generic.List? -MessagePack.Formatters.ListFormatter.ListFormatter() -> void -MessagePack.Formatters.ListFormatter.Serialize(ref MessagePack.MessagePackWriter writer, System.Collections.Generic.List? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.NativeDateTimeArrayFormatter -MessagePack.Formatters.NativeDateTimeArrayFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> System.DateTime[]? -MessagePack.Formatters.NativeDateTimeArrayFormatter.NativeDateTimeArrayFormatter() -> void -MessagePack.Formatters.NativeDateTimeArrayFormatter.Serialize(ref MessagePack.MessagePackWriter writer, System.DateTime[]? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.NativeDateTimeFormatter -MessagePack.Formatters.NativeDateTimeFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> System.DateTime -MessagePack.Formatters.NativeDateTimeFormatter.NativeDateTimeFormatter() -> void -MessagePack.Formatters.NativeDateTimeFormatter.Serialize(ref MessagePack.MessagePackWriter writer, System.DateTime value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.NativeDecimalFormatter -MessagePack.Formatters.NativeDecimalFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> decimal -MessagePack.Formatters.NativeDecimalFormatter.Serialize(ref MessagePack.MessagePackWriter writer, decimal value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.NativeGuidFormatter -MessagePack.Formatters.NativeGuidFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> System.Guid -MessagePack.Formatters.NativeGuidFormatter.Serialize(ref MessagePack.MessagePackWriter writer, System.Guid value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.NilFormatter -MessagePack.Formatters.NilFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> MessagePack.Nil -MessagePack.Formatters.NilFormatter.Serialize(ref MessagePack.MessagePackWriter writer, MessagePack.Nil value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.NonGenericDictionaryFormatter -MessagePack.Formatters.NonGenericDictionaryFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> T? -MessagePack.Formatters.NonGenericDictionaryFormatter.NonGenericDictionaryFormatter() -> void -MessagePack.Formatters.NonGenericDictionaryFormatter.Serialize(ref MessagePack.MessagePackWriter writer, T? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.NonGenericInterfaceDictionaryFormatter -MessagePack.Formatters.NonGenericInterfaceDictionaryFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> System.Collections.IDictionary? -MessagePack.Formatters.NonGenericInterfaceDictionaryFormatter.Serialize(ref MessagePack.MessagePackWriter writer, System.Collections.IDictionary? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.NonGenericInterfaceListFormatter -MessagePack.Formatters.NonGenericInterfaceListFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> System.Collections.IList? -MessagePack.Formatters.NonGenericInterfaceListFormatter.Serialize(ref MessagePack.MessagePackWriter writer, System.Collections.IList? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.NonGenericListFormatter -MessagePack.Formatters.NonGenericListFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> T? -MessagePack.Formatters.NonGenericListFormatter.NonGenericListFormatter() -> void -MessagePack.Formatters.NonGenericListFormatter.Serialize(ref MessagePack.MessagePackWriter writer, T? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.NullableBooleanFormatter -MessagePack.Formatters.NullableBooleanFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> bool? -MessagePack.Formatters.NullableBooleanFormatter.Serialize(ref MessagePack.MessagePackWriter writer, bool? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.NullableByteFormatter -MessagePack.Formatters.NullableByteFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> byte? -MessagePack.Formatters.NullableByteFormatter.Serialize(ref MessagePack.MessagePackWriter writer, byte? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.NullableCharFormatter -MessagePack.Formatters.NullableCharFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> char? -MessagePack.Formatters.NullableCharFormatter.Serialize(ref MessagePack.MessagePackWriter writer, char? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.NullableDateTimeFormatter -MessagePack.Formatters.NullableDateTimeFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> System.DateTime? -MessagePack.Formatters.NullableDateTimeFormatter.Serialize(ref MessagePack.MessagePackWriter writer, System.DateTime? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.NullableDoubleFormatter -MessagePack.Formatters.NullableDoubleFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> double? -MessagePack.Formatters.NullableDoubleFormatter.Serialize(ref MessagePack.MessagePackWriter writer, double? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.NullableForceByteBlockFormatter -MessagePack.Formatters.NullableForceByteBlockFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> byte? -MessagePack.Formatters.NullableForceByteBlockFormatter.Serialize(ref MessagePack.MessagePackWriter writer, byte? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.NullableForceInt16BlockFormatter -MessagePack.Formatters.NullableForceInt16BlockFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> short? -MessagePack.Formatters.NullableForceInt16BlockFormatter.Serialize(ref MessagePack.MessagePackWriter writer, short? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.NullableForceInt32BlockFormatter -MessagePack.Formatters.NullableForceInt32BlockFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> int? -MessagePack.Formatters.NullableForceInt32BlockFormatter.Serialize(ref MessagePack.MessagePackWriter writer, int? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.NullableForceInt64BlockFormatter -MessagePack.Formatters.NullableForceInt64BlockFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> long? -MessagePack.Formatters.NullableForceInt64BlockFormatter.Serialize(ref MessagePack.MessagePackWriter writer, long? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.NullableForceSByteBlockFormatter -MessagePack.Formatters.NullableForceSByteBlockFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> sbyte? -MessagePack.Formatters.NullableForceSByteBlockFormatter.Serialize(ref MessagePack.MessagePackWriter writer, sbyte? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.NullableForceUInt16BlockFormatter -MessagePack.Formatters.NullableForceUInt16BlockFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> ushort? -MessagePack.Formatters.NullableForceUInt16BlockFormatter.Serialize(ref MessagePack.MessagePackWriter writer, ushort? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.NullableForceUInt32BlockFormatter -MessagePack.Formatters.NullableForceUInt32BlockFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> uint? -MessagePack.Formatters.NullableForceUInt32BlockFormatter.Serialize(ref MessagePack.MessagePackWriter writer, uint? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.NullableForceUInt64BlockFormatter -MessagePack.Formatters.NullableForceUInt64BlockFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> ulong? -MessagePack.Formatters.NullableForceUInt64BlockFormatter.Serialize(ref MessagePack.MessagePackWriter writer, ulong? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.NullableFormatter -MessagePack.Formatters.NullableFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> T? -MessagePack.Formatters.NullableFormatter.NullableFormatter() -> void -MessagePack.Formatters.NullableFormatter.Serialize(ref MessagePack.MessagePackWriter writer, T? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.NullableInt16Formatter -MessagePack.Formatters.NullableInt16Formatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> short? -MessagePack.Formatters.NullableInt16Formatter.Serialize(ref MessagePack.MessagePackWriter writer, short? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.NullableInt32Formatter -MessagePack.Formatters.NullableInt32Formatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> int? -MessagePack.Formatters.NullableInt32Formatter.Serialize(ref MessagePack.MessagePackWriter writer, int? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.NullableInt64Formatter -MessagePack.Formatters.NullableInt64Formatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> long? -MessagePack.Formatters.NullableInt64Formatter.Serialize(ref MessagePack.MessagePackWriter writer, long? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.NullableNilFormatter -MessagePack.Formatters.NullableNilFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> MessagePack.Nil? -MessagePack.Formatters.NullableNilFormatter.Serialize(ref MessagePack.MessagePackWriter writer, MessagePack.Nil? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.NullableSByteFormatter -MessagePack.Formatters.NullableSByteFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> sbyte? -MessagePack.Formatters.NullableSByteFormatter.Serialize(ref MessagePack.MessagePackWriter writer, sbyte? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.NullableSingleFormatter -MessagePack.Formatters.NullableSingleFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> float? -MessagePack.Formatters.NullableSingleFormatter.Serialize(ref MessagePack.MessagePackWriter writer, float? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.NullableStringArrayFormatter -MessagePack.Formatters.NullableStringArrayFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> string?[]? -MessagePack.Formatters.NullableStringArrayFormatter.Serialize(ref MessagePack.MessagePackWriter writer, string?[]? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.NullableStringFormatter -MessagePack.Formatters.NullableStringFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> string? -MessagePack.Formatters.NullableStringFormatter.Serialize(ref MessagePack.MessagePackWriter writer, string? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.NullableUInt16Formatter -MessagePack.Formatters.NullableUInt16Formatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> ushort? -MessagePack.Formatters.NullableUInt16Formatter.Serialize(ref MessagePack.MessagePackWriter writer, ushort? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.NullableUInt32Formatter -MessagePack.Formatters.NullableUInt32Formatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> uint? -MessagePack.Formatters.NullableUInt32Formatter.Serialize(ref MessagePack.MessagePackWriter writer, uint? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.NullableUInt64Formatter -MessagePack.Formatters.NullableUInt64Formatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> ulong? -MessagePack.Formatters.NullableUInt64Formatter.Serialize(ref MessagePack.MessagePackWriter writer, ulong? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.ObservableCollectionFormatter -MessagePack.Formatters.ObservableCollectionFormatter.ObservableCollectionFormatter() -> void -MessagePack.Formatters.PrimitiveObjectFormatter -MessagePack.Formatters.PrimitiveObjectFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> object? -MessagePack.Formatters.PrimitiveObjectFormatter.Serialize(ref MessagePack.MessagePackWriter writer, object? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.QueueFormatter -MessagePack.Formatters.QueueFormatter.QueueFormatter() -> void -MessagePack.Formatters.ReadOnlyCollectionFormatter -MessagePack.Formatters.ReadOnlyCollectionFormatter.ReadOnlyCollectionFormatter() -> void -MessagePack.Formatters.ReadOnlyDictionaryFormatter -MessagePack.Formatters.ReadOnlyDictionaryFormatter.ReadOnlyDictionaryFormatter() -> void -MessagePack.Formatters.ReadOnlyObservableCollectionFormatter -MessagePack.Formatters.ReadOnlyObservableCollectionFormatter.ReadOnlyObservableCollectionFormatter() -> void -MessagePack.Formatters.SByteArrayFormatter -MessagePack.Formatters.SByteArrayFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> sbyte[]? -MessagePack.Formatters.SByteArrayFormatter.Serialize(ref MessagePack.MessagePackWriter writer, sbyte[]? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.SByteFormatter -MessagePack.Formatters.SByteFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> sbyte -MessagePack.Formatters.SByteFormatter.Serialize(ref MessagePack.MessagePackWriter writer, sbyte value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.SingleArrayFormatter -MessagePack.Formatters.SingleArrayFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> float[]? -MessagePack.Formatters.SingleArrayFormatter.Serialize(ref MessagePack.MessagePackWriter writer, float[]? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.SingleFormatter -MessagePack.Formatters.SingleFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> float -MessagePack.Formatters.SingleFormatter.Serialize(ref MessagePack.MessagePackWriter writer, float value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.SortedDictionaryFormatter -MessagePack.Formatters.SortedDictionaryFormatter.SortedDictionaryFormatter() -> void -MessagePack.Formatters.SortedListFormatter -MessagePack.Formatters.SortedListFormatter.SortedListFormatter() -> void -MessagePack.Formatters.StackFormatter -MessagePack.Formatters.StackFormatter.StackFormatter() -> void -MessagePack.Formatters.StaticNullableFormatter -MessagePack.Formatters.StaticNullableFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> T? -MessagePack.Formatters.StaticNullableFormatter.Serialize(ref MessagePack.MessagePackWriter writer, T? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.StaticNullableFormatter.StaticNullableFormatter(MessagePack.Formatters.IMessagePackFormatter! underlyingFormatter) -> void -MessagePack.Formatters.StringBuilderFormatter -MessagePack.Formatters.StringBuilderFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> System.Text.StringBuilder? -MessagePack.Formatters.StringBuilderFormatter.Serialize(ref MessagePack.MessagePackWriter writer, System.Text.StringBuilder? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.ThreeDimensionalArrayFormatter -MessagePack.Formatters.ThreeDimensionalArrayFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> T[,,]? -MessagePack.Formatters.ThreeDimensionalArrayFormatter.Serialize(ref MessagePack.MessagePackWriter writer, T[,,]? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.ThreeDimensionalArrayFormatter.ThreeDimensionalArrayFormatter() -> void -MessagePack.Formatters.TimeSpanFormatter -MessagePack.Formatters.TimeSpanFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> System.TimeSpan -MessagePack.Formatters.TimeSpanFormatter.Serialize(ref MessagePack.MessagePackWriter writer, System.TimeSpan value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.TupleFormatter -MessagePack.Formatters.TupleFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> System.Tuple? -MessagePack.Formatters.TupleFormatter.Serialize(ref MessagePack.MessagePackWriter writer, System.Tuple? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.TupleFormatter.TupleFormatter() -> void -MessagePack.Formatters.TupleFormatter -MessagePack.Formatters.TupleFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> System.Tuple? -MessagePack.Formatters.TupleFormatter.Serialize(ref MessagePack.MessagePackWriter writer, System.Tuple? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.TupleFormatter.TupleFormatter() -> void -MessagePack.Formatters.TupleFormatter -MessagePack.Formatters.TupleFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> System.Tuple? -MessagePack.Formatters.TupleFormatter.Serialize(ref MessagePack.MessagePackWriter writer, System.Tuple? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.TupleFormatter.TupleFormatter() -> void -MessagePack.Formatters.TupleFormatter -MessagePack.Formatters.TupleFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> System.Tuple? -MessagePack.Formatters.TupleFormatter.Serialize(ref MessagePack.MessagePackWriter writer, System.Tuple? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.TupleFormatter.TupleFormatter() -> void -MessagePack.Formatters.TupleFormatter -MessagePack.Formatters.TupleFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> System.Tuple? -MessagePack.Formatters.TupleFormatter.Serialize(ref MessagePack.MessagePackWriter writer, System.Tuple? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.TupleFormatter.TupleFormatter() -> void -MessagePack.Formatters.TupleFormatter -MessagePack.Formatters.TupleFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> System.Tuple? -MessagePack.Formatters.TupleFormatter.Serialize(ref MessagePack.MessagePackWriter writer, System.Tuple? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.TupleFormatter.TupleFormatter() -> void -MessagePack.Formatters.TupleFormatter -MessagePack.Formatters.TupleFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> System.Tuple? -MessagePack.Formatters.TupleFormatter.Serialize(ref MessagePack.MessagePackWriter writer, System.Tuple? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.TupleFormatter.TupleFormatter() -> void -MessagePack.Formatters.TupleFormatter -MessagePack.Formatters.TupleFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> System.Tuple? -MessagePack.Formatters.TupleFormatter.Serialize(ref MessagePack.MessagePackWriter writer, System.Tuple? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.TupleFormatter.TupleFormatter() -> void -MessagePack.Formatters.TwoDimensionalArrayFormatter -MessagePack.Formatters.TwoDimensionalArrayFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> T[,]? -MessagePack.Formatters.TwoDimensionalArrayFormatter.Serialize(ref MessagePack.MessagePackWriter writer, T[,]? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.TwoDimensionalArrayFormatter.TwoDimensionalArrayFormatter() -> void -MessagePack.Formatters.TypelessFormatter -MessagePack.Formatters.TypelessFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> object? -MessagePack.Formatters.TypelessFormatter.Serialize(ref MessagePack.MessagePackWriter writer, object? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.UInt16ArrayFormatter -MessagePack.Formatters.UInt16ArrayFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> ushort[]? -MessagePack.Formatters.UInt16ArrayFormatter.Serialize(ref MessagePack.MessagePackWriter writer, ushort[]? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.UInt16Formatter -MessagePack.Formatters.UInt16Formatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> ushort -MessagePack.Formatters.UInt16Formatter.Serialize(ref MessagePack.MessagePackWriter writer, ushort value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.UInt32ArrayFormatter -MessagePack.Formatters.UInt32ArrayFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> uint[]? -MessagePack.Formatters.UInt32ArrayFormatter.Serialize(ref MessagePack.MessagePackWriter writer, uint[]? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.UInt32Formatter -MessagePack.Formatters.UInt32Formatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> uint -MessagePack.Formatters.UInt32Formatter.Serialize(ref MessagePack.MessagePackWriter writer, uint value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.UInt64ArrayFormatter -MessagePack.Formatters.UInt64ArrayFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> ulong[]? -MessagePack.Formatters.UInt64ArrayFormatter.Serialize(ref MessagePack.MessagePackWriter writer, ulong[]? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.UInt64Formatter -MessagePack.Formatters.UInt64Formatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> ulong -MessagePack.Formatters.UInt64Formatter.Serialize(ref MessagePack.MessagePackWriter writer, ulong value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.UriFormatter -MessagePack.Formatters.UriFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> System.Uri? -MessagePack.Formatters.UriFormatter.Serialize(ref MessagePack.MessagePackWriter writer, System.Uri? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.ValueTupleFormatter -MessagePack.Formatters.ValueTupleFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> System.ValueTuple -MessagePack.Formatters.ValueTupleFormatter.Serialize(ref MessagePack.MessagePackWriter writer, System.ValueTuple value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.ValueTupleFormatter.ValueTupleFormatter() -> void -MessagePack.Formatters.ValueTupleFormatter -MessagePack.Formatters.ValueTupleFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> (T1, T2, T3, T4, T5, T6, T7) -MessagePack.Formatters.ValueTupleFormatter.Serialize(ref MessagePack.MessagePackWriter writer, (T1, T2, T3, T4, T5, T6, T7) value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.ValueTupleFormatter.ValueTupleFormatter() -> void -MessagePack.Formatters.ValueTupleFormatter -MessagePack.Formatters.ValueTupleFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> (T1, T2, T3, T4, T5, T6) -MessagePack.Formatters.ValueTupleFormatter.Serialize(ref MessagePack.MessagePackWriter writer, (T1, T2, T3, T4, T5, T6) value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.ValueTupleFormatter.ValueTupleFormatter() -> void -MessagePack.Formatters.ValueTupleFormatter -MessagePack.Formatters.ValueTupleFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> (T1, T2, T3, T4, T5) -MessagePack.Formatters.ValueTupleFormatter.Serialize(ref MessagePack.MessagePackWriter writer, (T1, T2, T3, T4, T5) value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.ValueTupleFormatter.ValueTupleFormatter() -> void -MessagePack.Formatters.ValueTupleFormatter -MessagePack.Formatters.ValueTupleFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> (T1, T2, T3, T4) -MessagePack.Formatters.ValueTupleFormatter.Serialize(ref MessagePack.MessagePackWriter writer, (T1, T2, T3, T4) value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.ValueTupleFormatter.ValueTupleFormatter() -> void -MessagePack.Formatters.ValueTupleFormatter -MessagePack.Formatters.ValueTupleFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> (T1, T2, T3) -MessagePack.Formatters.ValueTupleFormatter.Serialize(ref MessagePack.MessagePackWriter writer, (T1, T2, T3) value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.ValueTupleFormatter.ValueTupleFormatter() -> void -MessagePack.Formatters.ValueTupleFormatter -MessagePack.Formatters.ValueTupleFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> (T1, T2) -MessagePack.Formatters.ValueTupleFormatter.Serialize(ref MessagePack.MessagePackWriter writer, (T1, T2) value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.ValueTupleFormatter.ValueTupleFormatter() -> void -MessagePack.Formatters.ValueTupleFormatter -MessagePack.Formatters.ValueTupleFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> System.ValueTuple -MessagePack.Formatters.ValueTupleFormatter.Serialize(ref MessagePack.MessagePackWriter writer, System.ValueTuple value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.ValueTupleFormatter.ValueTupleFormatter() -> void -MessagePack.Formatters.VersionFormatter -MessagePack.Formatters.VersionFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> System.Version? -MessagePack.Formatters.VersionFormatter.Serialize(ref MessagePack.MessagePackWriter writer, System.Version? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.IFormatterResolver -MessagePack.IFormatterResolver.GetFormatter() -> MessagePack.Formatters.IMessagePackFormatter? -MessagePack.Internal.AutomataDictionary -MessagePack.Internal.AutomataDictionary.Add(string! str, int value) -> void -MessagePack.Internal.AutomataDictionary.AutomataDictionary() -> void -MessagePack.Internal.AutomataDictionary.EmitMatch(System.Reflection.Emit.ILGenerator! il, System.Reflection.Emit.LocalBuilder! bytesSpan, System.Reflection.Emit.LocalBuilder! key, System.Action>! onFound, System.Action! onNotFound) -> void -MessagePack.Internal.AutomataDictionary.GetEnumerator() -> System.Collections.Generic.IEnumerator>! -MessagePack.Internal.AutomataDictionary.TryGetValue(System.ReadOnlySpan bytes, out int value) -> bool -MessagePack.Internal.AutomataDictionary.TryGetValue(in System.Buffers.ReadOnlySequence bytes, out int value) -> bool -MessagePack.Internal.AutomataKeyGen -MessagePack.Internal.ByteArrayStringHashTable -MessagePack.Internal.ByteArrayStringHashTable.Add(byte[]! key, int value) -> void -MessagePack.Internal.ByteArrayStringHashTable.Add(string! key, int value) -> void -MessagePack.Internal.ByteArrayStringHashTable.ByteArrayStringHashTable(int capacity) -> void -MessagePack.Internal.ByteArrayStringHashTable.ByteArrayStringHashTable(int capacity, float loadFactor) -> void -MessagePack.Internal.ByteArrayStringHashTable.GetEnumerator() -> System.Collections.Generic.IEnumerator>! -MessagePack.Internal.ByteArrayStringHashTable.TryGetValue(System.ReadOnlySpan key, out int value) -> bool -MessagePack.Internal.ByteArrayStringHashTable.TryGetValue(in System.Buffers.ReadOnlySequence key, out int value) -> bool -MessagePack.Internal.CodeGenHelpers -MessagePack.Internal.RuntimeTypeHandleEqualityComparer -MessagePack.Internal.RuntimeTypeHandleEqualityComparer.Equals(System.RuntimeTypeHandle x, System.RuntimeTypeHandle y) -> bool -MessagePack.Internal.RuntimeTypeHandleEqualityComparer.GetHashCode(System.RuntimeTypeHandle obj) -> int -MessagePack.Internal.UnsafeMemory -MessagePack.Internal.UnsafeMemory32 -MessagePack.Internal.UnsafeMemory64 -MessagePack.MessagePackCode -MessagePack.MessagePackCompression -MessagePack.MessagePackCompression.Lz4Block = 1 -> MessagePack.MessagePackCompression -MessagePack.MessagePackCompression.Lz4BlockArray = 2 -> MessagePack.MessagePackCompression -MessagePack.MessagePackCompression.None = 0 -> MessagePack.MessagePackCompression -MessagePack.MessagePackRange -MessagePack.MessagePackReader -MessagePack.MessagePackReader.CancellationToken.get -> System.Threading.CancellationToken -MessagePack.MessagePackReader.CancellationToken.set -> void -MessagePack.MessagePackReader.Clone(scoped in System.Buffers.ReadOnlySequence readOnlySequence) -> MessagePack.MessagePackReader -MessagePack.MessagePackReader.Consumed.get -> long -MessagePack.MessagePackReader.CreatePeekReader() -> MessagePack.MessagePackReader -MessagePack.MessagePackReader.End.get -> bool -MessagePack.MessagePackReader.IsNil.get -> bool -MessagePack.MessagePackReader.MessagePackReader(System.ReadOnlyMemory memory) -> void -MessagePack.MessagePackReader.MessagePackReader(scoped in System.Buffers.ReadOnlySequence readOnlySequence) -> void -MessagePack.MessagePackReader.NextCode.get -> byte -MessagePack.MessagePackReader.NextMessagePackType.get -> MessagePack.MessagePackType -MessagePack.MessagePackReader.Position.get -> System.SequencePosition -MessagePack.MessagePackReader.ReadArrayHeader() -> int -MessagePack.MessagePackReader.ReadBoolean() -> bool -MessagePack.MessagePackReader.ReadByte() -> byte -MessagePack.MessagePackReader.ReadBytes() -> System.Buffers.ReadOnlySequence? -MessagePack.MessagePackReader.ReadChar() -> char -MessagePack.MessagePackReader.ReadDateTime() -> System.DateTime -MessagePack.MessagePackReader.ReadDouble() -> double -MessagePack.MessagePackReader.ReadExtensionFormat() -> MessagePack.ExtensionResult -MessagePack.MessagePackReader.ReadExtensionFormatHeader() -> MessagePack.ExtensionHeader -MessagePack.MessagePackReader.ReadInt16() -> short -MessagePack.MessagePackReader.ReadInt32() -> int -MessagePack.MessagePackReader.ReadInt64() -> long -MessagePack.MessagePackReader.ReadMapHeader() -> int -MessagePack.MessagePackReader.ReadNil() -> MessagePack.Nil -MessagePack.MessagePackReader.ReadRaw() -> System.Buffers.ReadOnlySequence -MessagePack.MessagePackReader.ReadRaw(long length) -> System.Buffers.ReadOnlySequence -MessagePack.MessagePackReader.ReadSByte() -> sbyte -MessagePack.MessagePackReader.ReadSingle() -> float -MessagePack.MessagePackReader.ReadString() -> string? -MessagePack.MessagePackReader.ReadStringSequence() -> System.Buffers.ReadOnlySequence? -MessagePack.MessagePackReader.ReadUInt16() -> ushort -MessagePack.MessagePackReader.ReadUInt32() -> uint -MessagePack.MessagePackReader.ReadUInt64() -> ulong -MessagePack.MessagePackReader.Sequence.get -> System.Buffers.ReadOnlySequence -MessagePack.MessagePackReader.Skip() -> void -MessagePack.MessagePackReader.TryReadNil() -> bool -MessagePack.MessagePackReader.TryReadStringSpan(out System.ReadOnlySpan span) -> bool -MessagePack.MessagePackSerializationException -MessagePack.MessagePackSerializationException.MessagePackSerializationException() -> void -MessagePack.MessagePackSerializationException.MessagePackSerializationException(System.Runtime.Serialization.SerializationInfo! info, System.Runtime.Serialization.StreamingContext context) -> void -MessagePack.MessagePackSerializationException.MessagePackSerializationException(string? message) -> void -MessagePack.MessagePackSerializationException.MessagePackSerializationException(string? message, System.Exception? inner) -> void -MessagePack.MessagePackSerializer -MessagePack.MessagePackSerializer.Typeless -MessagePack.MessagePackSerializerOptions -MessagePack.MessagePackSerializerOptions.AllowAssemblyVersionMismatch.get -> bool -MessagePack.MessagePackSerializerOptions.Compression.get -> MessagePack.MessagePackCompression -MessagePack.MessagePackSerializerOptions.MessagePackSerializerOptions(MessagePack.IFormatterResolver! resolver) -> void -MessagePack.MessagePackSerializerOptions.MessagePackSerializerOptions(MessagePack.MessagePackSerializerOptions! copyFrom) -> void -MessagePack.MessagePackSerializerOptions.OldSpec.get -> bool? -MessagePack.MessagePackSerializerOptions.OmitAssemblyVersion.get -> bool -MessagePack.MessagePackSerializerOptions.Resolver.get -> MessagePack.IFormatterResolver! -MessagePack.MessagePackSerializerOptions.WithAllowAssemblyVersionMismatch(bool allowAssemblyVersionMismatch) -> MessagePack.MessagePackSerializerOptions! -MessagePack.MessagePackSerializerOptions.WithCompression(MessagePack.MessagePackCompression compression) -> MessagePack.MessagePackSerializerOptions! -MessagePack.MessagePackSerializerOptions.WithOldSpec(bool? oldSpec = true) -> MessagePack.MessagePackSerializerOptions! -MessagePack.MessagePackSerializerOptions.WithOmitAssemblyVersion(bool omitAssemblyVersion) -> MessagePack.MessagePackSerializerOptions! -MessagePack.MessagePackSerializerOptions.WithResolver(MessagePack.IFormatterResolver! resolver) -> MessagePack.MessagePackSerializerOptions! -MessagePack.MessagePackStreamReader -MessagePack.MessagePackStreamReader.Dispose() -> void -MessagePack.MessagePackStreamReader.MessagePackStreamReader(System.IO.Stream! stream) -> void -MessagePack.MessagePackStreamReader.ReadAsync(System.Threading.CancellationToken cancellationToken) -> System.Threading.Tasks.ValueTask?> -MessagePack.MessagePackStreamReader.RemainingBytes.get -> System.Buffers.ReadOnlySequence -MessagePack.MessagePackType -MessagePack.MessagePackType.Array = 7 -> MessagePack.MessagePackType -MessagePack.MessagePackType.Binary = 6 -> MessagePack.MessagePackType -MessagePack.MessagePackType.Boolean = 3 -> MessagePack.MessagePackType -MessagePack.MessagePackType.Extension = 9 -> MessagePack.MessagePackType -MessagePack.MessagePackType.Float = 4 -> MessagePack.MessagePackType -MessagePack.MessagePackType.Integer = 1 -> MessagePack.MessagePackType -MessagePack.MessagePackType.Map = 8 -> MessagePack.MessagePackType -MessagePack.MessagePackType.Nil = 2 -> MessagePack.MessagePackType -MessagePack.MessagePackType.String = 5 -> MessagePack.MessagePackType -MessagePack.MessagePackType.Unknown = 0 -> MessagePack.MessagePackType -MessagePack.MessagePackWriter -MessagePack.MessagePackWriter.Advance(int length) -> void -MessagePack.MessagePackWriter.CancellationToken.get -> System.Threading.CancellationToken -MessagePack.MessagePackWriter.CancellationToken.set -> void -MessagePack.MessagePackWriter.Clone(System.Buffers.IBufferWriter! writer) -> MessagePack.MessagePackWriter -MessagePack.MessagePackWriter.Flush() -> void -MessagePack.MessagePackWriter.GetSpan(int length) -> System.Span -MessagePack.MessagePackWriter.MessagePackWriter(System.Buffers.IBufferWriter! writer) -> void -MessagePack.MessagePackWriter.OldSpec.get -> bool -MessagePack.MessagePackWriter.OldSpec.set -> void -MessagePack.MessagePackWriter.Write(System.DateTime dateTime) -> void -MessagePack.MessagePackWriter.Write(System.ReadOnlySpan src) -> void -MessagePack.MessagePackWriter.Write(System.ReadOnlySpan value) -> void -MessagePack.MessagePackWriter.Write(bool value) -> void -MessagePack.MessagePackWriter.Write(byte value) -> void -MessagePack.MessagePackWriter.Write(byte[]? src) -> void -MessagePack.MessagePackWriter.Write(char value) -> void -MessagePack.MessagePackWriter.Write(double value) -> void -MessagePack.MessagePackWriter.Write(float value) -> void -MessagePack.MessagePackWriter.Write(in System.Buffers.ReadOnlySequence src) -> void -MessagePack.MessagePackWriter.Write(int value) -> void -MessagePack.MessagePackWriter.Write(long value) -> void -MessagePack.MessagePackWriter.Write(sbyte value) -> void -MessagePack.MessagePackWriter.Write(short value) -> void -MessagePack.MessagePackWriter.Write(string? value) -> void -MessagePack.MessagePackWriter.Write(uint value) -> void -MessagePack.MessagePackWriter.Write(ulong value) -> void -MessagePack.MessagePackWriter.Write(ushort value) -> void -MessagePack.MessagePackWriter.WriteArrayHeader(int count) -> void -MessagePack.MessagePackWriter.WriteArrayHeader(uint count) -> void -MessagePack.MessagePackWriter.WriteExtensionFormat(MessagePack.ExtensionResult extensionData) -> void -MessagePack.MessagePackWriter.WriteExtensionFormatHeader(MessagePack.ExtensionHeader extensionHeader) -> void -MessagePack.MessagePackWriter.WriteInt16(short value) -> void -MessagePack.MessagePackWriter.WriteInt32(int value) -> void -MessagePack.MessagePackWriter.WriteInt64(long value) -> void -MessagePack.MessagePackWriter.WriteInt8(sbyte value) -> void -MessagePack.MessagePackWriter.WriteMapHeader(int count) -> void -MessagePack.MessagePackWriter.WriteMapHeader(uint count) -> void -MessagePack.MessagePackWriter.WriteNil() -> void -MessagePack.MessagePackWriter.WriteRaw(System.ReadOnlySpan rawMessagePackBlock) -> void -MessagePack.MessagePackWriter.WriteRaw(in System.Buffers.ReadOnlySequence rawMessagePackBlock) -> void -MessagePack.MessagePackWriter.WriteString(System.ReadOnlySpan utf8stringBytes) -> void -MessagePack.MessagePackWriter.WriteString(in System.Buffers.ReadOnlySequence utf8stringBytes) -> void -MessagePack.MessagePackWriter.WriteUInt16(ushort value) -> void -MessagePack.MessagePackWriter.WriteUInt32(uint value) -> void -MessagePack.MessagePackWriter.WriteUInt64(ulong value) -> void -MessagePack.MessagePackWriter.WriteUInt8(byte value) -> void -MessagePack.Nil -MessagePack.Nil.Equals(MessagePack.Nil other) -> bool -MessagePack.Nil.Nil() -> void -MessagePack.ReservedMessagePackExtensionTypeCode -MessagePack.Resolvers.AttributeFormatterResolver -MessagePack.Resolvers.AttributeFormatterResolver.GetFormatter() -> MessagePack.Formatters.IMessagePackFormatter? -MessagePack.Resolvers.BuiltinResolver -MessagePack.Resolvers.BuiltinResolver.GetFormatter() -> MessagePack.Formatters.IMessagePackFormatter? -MessagePack.Resolvers.CompositeResolver -MessagePack.Resolvers.ContractlessStandardResolver -MessagePack.Resolvers.ContractlessStandardResolver.GetFormatter() -> MessagePack.Formatters.IMessagePackFormatter? -MessagePack.Resolvers.ContractlessStandardResolverAllowPrivate -MessagePack.Resolvers.ContractlessStandardResolverAllowPrivate.GetFormatter() -> MessagePack.Formatters.IMessagePackFormatter? -MessagePack.Resolvers.DynamicContractlessObjectResolver -MessagePack.Resolvers.DynamicContractlessObjectResolver.GetFormatter() -> MessagePack.Formatters.IMessagePackFormatter? -MessagePack.Resolvers.DynamicContractlessObjectResolverAllowPrivate -MessagePack.Resolvers.DynamicContractlessObjectResolverAllowPrivate.DynamicContractlessObjectResolverAllowPrivate() -> void -MessagePack.Resolvers.DynamicContractlessObjectResolverAllowPrivate.GetFormatter() -> MessagePack.Formatters.IMessagePackFormatter? -MessagePack.Resolvers.DynamicEnumAsStringResolver -MessagePack.Resolvers.DynamicEnumAsStringResolver.GetFormatter() -> MessagePack.Formatters.IMessagePackFormatter? -MessagePack.Resolvers.DynamicEnumResolver -MessagePack.Resolvers.DynamicEnumResolver.GetFormatter() -> MessagePack.Formatters.IMessagePackFormatter? -MessagePack.Resolvers.DynamicGenericResolver -MessagePack.Resolvers.DynamicGenericResolver.GetFormatter() -> MessagePack.Formatters.IMessagePackFormatter? -MessagePack.Resolvers.DynamicObjectResolver -MessagePack.Resolvers.DynamicObjectResolver.GetFormatter() -> MessagePack.Formatters.IMessagePackFormatter? -MessagePack.Resolvers.DynamicObjectResolverAllowPrivate -MessagePack.Resolvers.DynamicObjectResolverAllowPrivate.GetFormatter() -> MessagePack.Formatters.IMessagePackFormatter? -MessagePack.Resolvers.DynamicUnionResolver -MessagePack.Resolvers.DynamicUnionResolver.GetFormatter() -> MessagePack.Formatters.IMessagePackFormatter? -MessagePack.Resolvers.NativeDateTimeResolver -MessagePack.Resolvers.NativeDateTimeResolver.GetFormatter() -> MessagePack.Formatters.IMessagePackFormatter? -MessagePack.Resolvers.NativeDecimalResolver -MessagePack.Resolvers.NativeDecimalResolver.GetFormatter() -> MessagePack.Formatters.IMessagePackFormatter? -MessagePack.Resolvers.NativeGuidResolver -MessagePack.Resolvers.NativeGuidResolver.GetFormatter() -> MessagePack.Formatters.IMessagePackFormatter? -MessagePack.Resolvers.PrimitiveObjectResolver -MessagePack.Resolvers.PrimitiveObjectResolver.GetFormatter() -> MessagePack.Formatters.IMessagePackFormatter? -MessagePack.Resolvers.StandardResolver -MessagePack.Resolvers.StandardResolver.GetFormatter() -> MessagePack.Formatters.IMessagePackFormatter? -MessagePack.Resolvers.StandardResolverAllowPrivate -MessagePack.Resolvers.StandardResolverAllowPrivate.GetFormatter() -> MessagePack.Formatters.IMessagePackFormatter? -MessagePack.Resolvers.StaticCompositeResolver -MessagePack.Resolvers.StaticCompositeResolver.GetFormatter() -> MessagePack.Formatters.IMessagePackFormatter? -MessagePack.Resolvers.StaticCompositeResolver.Register(System.Collections.Generic.IReadOnlyList! formatters, System.Collections.Generic.IReadOnlyList! resolvers) -> void -MessagePack.Resolvers.StaticCompositeResolver.Register(params MessagePack.Formatters.IMessagePackFormatter![]! formatters) -> void -MessagePack.Resolvers.StaticCompositeResolver.Register(params MessagePack.IFormatterResolver![]! resolvers) -> void -MessagePack.Resolvers.TypelessContractlessStandardResolver -MessagePack.Resolvers.TypelessContractlessStandardResolver.GetFormatter() -> MessagePack.Formatters.IMessagePackFormatter? -MessagePack.Resolvers.TypelessContractlessStandardResolver.TypelessContractlessStandardResolver() -> void -MessagePack.Resolvers.TypelessObjectResolver -MessagePack.Resolvers.TypelessObjectResolver.GetFormatter() -> MessagePack.Formatters.IMessagePackFormatter? -MessagePack.TinyJsonException -MessagePack.TinyJsonException.TinyJsonException(string! message) -> void -abstract MessagePack.Formatters.CollectionFormatterBase.Add(TIntermediate collection, int index, TElement value, MessagePack.MessagePackSerializerOptions! options) -> void -abstract MessagePack.Formatters.CollectionFormatterBase.Complete(TIntermediate intermediateCollection) -> TCollection -abstract MessagePack.Formatters.CollectionFormatterBase.Create(int count, MessagePack.MessagePackSerializerOptions! options) -> TIntermediate -abstract MessagePack.Formatters.CollectionFormatterBase.GetSourceEnumerator(TCollection source) -> TEnumerator -abstract MessagePack.Formatters.DictionaryFormatterBase.Add(TIntermediate collection, int index, TKey key, TValue value, MessagePack.MessagePackSerializerOptions! options) -> void -abstract MessagePack.Formatters.DictionaryFormatterBase.Complete(TIntermediate intermediateCollection) -> TDictionary! -abstract MessagePack.Formatters.DictionaryFormatterBase.Create(int count, MessagePack.MessagePackSerializerOptions! options) -> TIntermediate -abstract MessagePack.Formatters.DictionaryFormatterBase.GetSourceEnumerator(TDictionary! source) -> TEnumerator -const MessagePack.MessagePackCode.Array16 = 220 -> byte -const MessagePack.MessagePackCode.Array32 = 221 -> byte -const MessagePack.MessagePackCode.Bin16 = 197 -> byte -const MessagePack.MessagePackCode.Bin32 = 198 -> byte -const MessagePack.MessagePackCode.Bin8 = 196 -> byte -const MessagePack.MessagePackCode.Ext16 = 200 -> byte -const MessagePack.MessagePackCode.Ext32 = 201 -> byte -const MessagePack.MessagePackCode.Ext8 = 199 -> byte -const MessagePack.MessagePackCode.False = 194 -> byte -const MessagePack.MessagePackCode.FixExt1 = 212 -> byte -const MessagePack.MessagePackCode.FixExt16 = 216 -> byte -const MessagePack.MessagePackCode.FixExt2 = 213 -> byte -const MessagePack.MessagePackCode.FixExt4 = 214 -> byte -const MessagePack.MessagePackCode.FixExt8 = 215 -> byte -const MessagePack.MessagePackCode.Float32 = 202 -> byte -const MessagePack.MessagePackCode.Float64 = 203 -> byte -const MessagePack.MessagePackCode.Int16 = 209 -> byte -const MessagePack.MessagePackCode.Int32 = 210 -> byte -const MessagePack.MessagePackCode.Int64 = 211 -> byte -const MessagePack.MessagePackCode.Int8 = 208 -> byte -const MessagePack.MessagePackCode.Map16 = 222 -> byte -const MessagePack.MessagePackCode.Map32 = 223 -> byte -const MessagePack.MessagePackCode.MaxFixArray = 159 -> byte -const MessagePack.MessagePackCode.MaxFixInt = 127 -> byte -const MessagePack.MessagePackCode.MaxFixMap = 143 -> byte -const MessagePack.MessagePackCode.MaxFixStr = 191 -> byte -const MessagePack.MessagePackCode.MaxNegativeFixInt = 255 -> byte -const MessagePack.MessagePackCode.MinFixArray = 144 -> byte -const MessagePack.MessagePackCode.MinFixInt = 0 -> byte -const MessagePack.MessagePackCode.MinFixMap = 128 -> byte -const MessagePack.MessagePackCode.MinFixStr = 160 -> byte -const MessagePack.MessagePackCode.MinNegativeFixInt = 224 -> byte -const MessagePack.MessagePackCode.NeverUsed = 193 -> byte -const MessagePack.MessagePackCode.Nil = 192 -> byte -const MessagePack.MessagePackCode.Str16 = 218 -> byte -const MessagePack.MessagePackCode.Str32 = 219 -> byte -const MessagePack.MessagePackCode.Str8 = 217 -> byte -const MessagePack.MessagePackCode.True = 195 -> byte -const MessagePack.MessagePackCode.UInt16 = 205 -> byte -const MessagePack.MessagePackCode.UInt32 = 206 -> byte -const MessagePack.MessagePackCode.UInt64 = 207 -> byte -const MessagePack.MessagePackCode.UInt8 = 204 -> byte -const MessagePack.MessagePackRange.MaxFixArrayCount = 15 -> int -const MessagePack.MessagePackRange.MaxFixMapCount = 15 -> int -const MessagePack.MessagePackRange.MaxFixNegativeInt = -1 -> int -const MessagePack.MessagePackRange.MaxFixPositiveInt = 127 -> int -const MessagePack.MessagePackRange.MaxFixStringLength = 31 -> int -const MessagePack.MessagePackRange.MinFixNegativeInt = -32 -> int -const MessagePack.MessagePackRange.MinFixStringLength = 0 -> int -const MessagePack.ReservedMessagePackExtensionTypeCode.DateTime = -1 -> sbyte -override MessagePack.Formatters.CollectionFormatterBase.GetSourceEnumerator(TCollection source) -> System.Collections.Generic.IEnumerator! -override MessagePack.Formatters.DictionaryFormatterBase.Complete(TDictionary! intermediateCollection) -> TDictionary! -override MessagePack.Formatters.DictionaryFormatterBase.GetSourceEnumerator(TDictionary! source) -> System.Collections.Generic.IEnumerator>! -override MessagePack.Internal.AutomataDictionary.ToString() -> string! -override MessagePack.Nil.Equals(object? obj) -> bool -override MessagePack.Nil.GetHashCode() -> int -override MessagePack.Nil.ToString() -> string! -override sealed MessagePack.Formatters.CollectionFormatterBase.Complete(TCollection intermediateCollection) -> TCollection -static MessagePack.FormatterResolverExtensions.GetFormatterDynamic(this MessagePack.IFormatterResolver! resolver, System.Type! type) -> object? -static MessagePack.FormatterResolverExtensions.GetFormatterWithVerify(this MessagePack.IFormatterResolver! resolver) -> MessagePack.Formatters.IMessagePackFormatter! -static MessagePack.Formatters.PrimitiveObjectFormatter.IsSupportedType(System.Type! type, System.Reflection.TypeInfo! typeInfo, object! value) -> bool -static MessagePack.Internal.AutomataKeyGen.GetKey(ref System.ReadOnlySpan span) -> ulong -static MessagePack.Internal.CodeGenHelpers.GetArrayFromNullableSequence(in System.Buffers.ReadOnlySequence? sequence) -> byte[]? -static MessagePack.Internal.CodeGenHelpers.GetEncodedStringBytes(string! value) -> byte[]! -static MessagePack.Internal.CodeGenHelpers.GetSpanFromSequence(scoped in System.Buffers.ReadOnlySequence sequence) -> System.ReadOnlySpan -static MessagePack.Internal.CodeGenHelpers.ReadStringSpan(scoped ref MessagePack.MessagePackReader reader) -> System.ReadOnlySpan -static MessagePack.Internal.UnsafeMemory32.WriteRaw1(ref MessagePack.MessagePackWriter writer, System.ReadOnlySpan src) -> void -static MessagePack.Internal.UnsafeMemory32.WriteRaw10(ref MessagePack.MessagePackWriter writer, System.ReadOnlySpan src) -> void -static MessagePack.Internal.UnsafeMemory32.WriteRaw11(ref MessagePack.MessagePackWriter writer, System.ReadOnlySpan src) -> void -static MessagePack.Internal.UnsafeMemory32.WriteRaw12(ref MessagePack.MessagePackWriter writer, System.ReadOnlySpan src) -> void -static MessagePack.Internal.UnsafeMemory32.WriteRaw13(ref MessagePack.MessagePackWriter writer, System.ReadOnlySpan src) -> void -static MessagePack.Internal.UnsafeMemory32.WriteRaw14(ref MessagePack.MessagePackWriter writer, System.ReadOnlySpan src) -> void -static MessagePack.Internal.UnsafeMemory32.WriteRaw15(ref MessagePack.MessagePackWriter writer, System.ReadOnlySpan src) -> void -static MessagePack.Internal.UnsafeMemory32.WriteRaw16(ref MessagePack.MessagePackWriter writer, System.ReadOnlySpan src) -> void -static MessagePack.Internal.UnsafeMemory32.WriteRaw17(ref MessagePack.MessagePackWriter writer, System.ReadOnlySpan src) -> void -static MessagePack.Internal.UnsafeMemory32.WriteRaw18(ref MessagePack.MessagePackWriter writer, System.ReadOnlySpan src) -> void -static MessagePack.Internal.UnsafeMemory32.WriteRaw19(ref MessagePack.MessagePackWriter writer, System.ReadOnlySpan src) -> void -static MessagePack.Internal.UnsafeMemory32.WriteRaw2(ref MessagePack.MessagePackWriter writer, System.ReadOnlySpan src) -> void -static MessagePack.Internal.UnsafeMemory32.WriteRaw20(ref MessagePack.MessagePackWriter writer, System.ReadOnlySpan src) -> void -static MessagePack.Internal.UnsafeMemory32.WriteRaw21(ref MessagePack.MessagePackWriter writer, System.ReadOnlySpan src) -> void -static MessagePack.Internal.UnsafeMemory32.WriteRaw22(ref MessagePack.MessagePackWriter writer, System.ReadOnlySpan src) -> void -static MessagePack.Internal.UnsafeMemory32.WriteRaw23(ref MessagePack.MessagePackWriter writer, System.ReadOnlySpan src) -> void -static MessagePack.Internal.UnsafeMemory32.WriteRaw24(ref MessagePack.MessagePackWriter writer, System.ReadOnlySpan src) -> void -static MessagePack.Internal.UnsafeMemory32.WriteRaw25(ref MessagePack.MessagePackWriter writer, System.ReadOnlySpan src) -> void -static MessagePack.Internal.UnsafeMemory32.WriteRaw26(ref MessagePack.MessagePackWriter writer, System.ReadOnlySpan src) -> void -static MessagePack.Internal.UnsafeMemory32.WriteRaw27(ref MessagePack.MessagePackWriter writer, System.ReadOnlySpan src) -> void -static MessagePack.Internal.UnsafeMemory32.WriteRaw28(ref MessagePack.MessagePackWriter writer, System.ReadOnlySpan src) -> void -static MessagePack.Internal.UnsafeMemory32.WriteRaw29(ref MessagePack.MessagePackWriter writer, System.ReadOnlySpan src) -> void -static MessagePack.Internal.UnsafeMemory32.WriteRaw3(ref MessagePack.MessagePackWriter writer, System.ReadOnlySpan src) -> void -static MessagePack.Internal.UnsafeMemory32.WriteRaw30(ref MessagePack.MessagePackWriter writer, System.ReadOnlySpan src) -> void -static MessagePack.Internal.UnsafeMemory32.WriteRaw31(ref MessagePack.MessagePackWriter writer, System.ReadOnlySpan src) -> void -static MessagePack.Internal.UnsafeMemory32.WriteRaw4(ref MessagePack.MessagePackWriter writer, System.ReadOnlySpan src) -> void -static MessagePack.Internal.UnsafeMemory32.WriteRaw5(ref MessagePack.MessagePackWriter writer, System.ReadOnlySpan src) -> void -static MessagePack.Internal.UnsafeMemory32.WriteRaw6(ref MessagePack.MessagePackWriter writer, System.ReadOnlySpan src) -> void -static MessagePack.Internal.UnsafeMemory32.WriteRaw7(ref MessagePack.MessagePackWriter writer, System.ReadOnlySpan src) -> void -static MessagePack.Internal.UnsafeMemory32.WriteRaw8(ref MessagePack.MessagePackWriter writer, System.ReadOnlySpan src) -> void -static MessagePack.Internal.UnsafeMemory32.WriteRaw9(ref MessagePack.MessagePackWriter writer, System.ReadOnlySpan src) -> void -static MessagePack.Internal.UnsafeMemory64.WriteRaw1(ref MessagePack.MessagePackWriter writer, System.ReadOnlySpan src) -> void -static MessagePack.Internal.UnsafeMemory64.WriteRaw10(ref MessagePack.MessagePackWriter writer, System.ReadOnlySpan src) -> void -static MessagePack.Internal.UnsafeMemory64.WriteRaw11(ref MessagePack.MessagePackWriter writer, System.ReadOnlySpan src) -> void -static MessagePack.Internal.UnsafeMemory64.WriteRaw12(ref MessagePack.MessagePackWriter writer, System.ReadOnlySpan src) -> void -static MessagePack.Internal.UnsafeMemory64.WriteRaw13(ref MessagePack.MessagePackWriter writer, System.ReadOnlySpan src) -> void -static MessagePack.Internal.UnsafeMemory64.WriteRaw14(ref MessagePack.MessagePackWriter writer, System.ReadOnlySpan src) -> void -static MessagePack.Internal.UnsafeMemory64.WriteRaw15(ref MessagePack.MessagePackWriter writer, System.ReadOnlySpan src) -> void -static MessagePack.Internal.UnsafeMemory64.WriteRaw16(ref MessagePack.MessagePackWriter writer, System.ReadOnlySpan src) -> void -static MessagePack.Internal.UnsafeMemory64.WriteRaw17(ref MessagePack.MessagePackWriter writer, System.ReadOnlySpan src) -> void -static MessagePack.Internal.UnsafeMemory64.WriteRaw18(ref MessagePack.MessagePackWriter writer, System.ReadOnlySpan src) -> void -static MessagePack.Internal.UnsafeMemory64.WriteRaw19(ref MessagePack.MessagePackWriter writer, System.ReadOnlySpan src) -> void -static MessagePack.Internal.UnsafeMemory64.WriteRaw2(ref MessagePack.MessagePackWriter writer, System.ReadOnlySpan src) -> void -static MessagePack.Internal.UnsafeMemory64.WriteRaw20(ref MessagePack.MessagePackWriter writer, System.ReadOnlySpan src) -> void -static MessagePack.Internal.UnsafeMemory64.WriteRaw21(ref MessagePack.MessagePackWriter writer, System.ReadOnlySpan src) -> void -static MessagePack.Internal.UnsafeMemory64.WriteRaw22(ref MessagePack.MessagePackWriter writer, System.ReadOnlySpan src) -> void -static MessagePack.Internal.UnsafeMemory64.WriteRaw23(ref MessagePack.MessagePackWriter writer, System.ReadOnlySpan src) -> void -static MessagePack.Internal.UnsafeMemory64.WriteRaw24(ref MessagePack.MessagePackWriter writer, System.ReadOnlySpan src) -> void -static MessagePack.Internal.UnsafeMemory64.WriteRaw25(ref MessagePack.MessagePackWriter writer, System.ReadOnlySpan src) -> void -static MessagePack.Internal.UnsafeMemory64.WriteRaw26(ref MessagePack.MessagePackWriter writer, System.ReadOnlySpan src) -> void -static MessagePack.Internal.UnsafeMemory64.WriteRaw27(ref MessagePack.MessagePackWriter writer, System.ReadOnlySpan src) -> void -static MessagePack.Internal.UnsafeMemory64.WriteRaw28(ref MessagePack.MessagePackWriter writer, System.ReadOnlySpan src) -> void -static MessagePack.Internal.UnsafeMemory64.WriteRaw29(ref MessagePack.MessagePackWriter writer, System.ReadOnlySpan src) -> void -static MessagePack.Internal.UnsafeMemory64.WriteRaw3(ref MessagePack.MessagePackWriter writer, System.ReadOnlySpan src) -> void -static MessagePack.Internal.UnsafeMemory64.WriteRaw30(ref MessagePack.MessagePackWriter writer, System.ReadOnlySpan src) -> void -static MessagePack.Internal.UnsafeMemory64.WriteRaw31(ref MessagePack.MessagePackWriter writer, System.ReadOnlySpan src) -> void -static MessagePack.Internal.UnsafeMemory64.WriteRaw4(ref MessagePack.MessagePackWriter writer, System.ReadOnlySpan src) -> void -static MessagePack.Internal.UnsafeMemory64.WriteRaw5(ref MessagePack.MessagePackWriter writer, System.ReadOnlySpan src) -> void -static MessagePack.Internal.UnsafeMemory64.WriteRaw6(ref MessagePack.MessagePackWriter writer, System.ReadOnlySpan src) -> void -static MessagePack.Internal.UnsafeMemory64.WriteRaw7(ref MessagePack.MessagePackWriter writer, System.ReadOnlySpan src) -> void -static MessagePack.Internal.UnsafeMemory64.WriteRaw8(ref MessagePack.MessagePackWriter writer, System.ReadOnlySpan src) -> void -static MessagePack.Internal.UnsafeMemory64.WriteRaw9(ref MessagePack.MessagePackWriter writer, System.ReadOnlySpan src) -> void -static MessagePack.MessagePackCode.ToFormatName(byte code) -> string! -static MessagePack.MessagePackCode.ToMessagePackType(byte code) -> MessagePack.MessagePackType -static MessagePack.MessagePackSerializer.ConvertFromJson(System.IO.TextReader! reader, ref MessagePack.MessagePackWriter writer, MessagePack.MessagePackSerializerOptions? options = null) -> void -static MessagePack.MessagePackSerializer.ConvertFromJson(string! str, MessagePack.MessagePackSerializerOptions? options = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) -> byte[]! -static MessagePack.MessagePackSerializer.ConvertFromJson(string! str, ref MessagePack.MessagePackWriter writer, MessagePack.MessagePackSerializerOptions? options = null) -> void -static MessagePack.MessagePackSerializer.ConvertToJson(System.ReadOnlyMemory bytes, MessagePack.MessagePackSerializerOptions? options = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) -> string! -static MessagePack.MessagePackSerializer.ConvertToJson(in System.Buffers.ReadOnlySequence bytes, MessagePack.MessagePackSerializerOptions? options = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) -> string! -static MessagePack.MessagePackSerializer.ConvertToJson(ref MessagePack.MessagePackReader reader, System.IO.TextWriter! jsonWriter, MessagePack.MessagePackSerializerOptions? options = null) -> void -static MessagePack.MessagePackSerializer.DefaultOptions.get -> MessagePack.MessagePackSerializerOptions! -static MessagePack.MessagePackSerializer.DefaultOptions.set -> void -static MessagePack.MessagePackSerializer.Deserialize(System.Type! type, System.Buffers.ReadOnlySequence bytes, MessagePack.MessagePackSerializerOptions? options = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) -> object? -static MessagePack.MessagePackSerializer.Deserialize(System.Type! type, System.IO.Stream! stream, MessagePack.MessagePackSerializerOptions? options = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) -> object? -static MessagePack.MessagePackSerializer.Deserialize(System.Type! type, System.ReadOnlyMemory bytes, MessagePack.MessagePackSerializerOptions? options = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) -> object? -static MessagePack.MessagePackSerializer.Deserialize(System.Type! type, ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions? options = null) -> object? -static MessagePack.MessagePackSerializer.Deserialize(System.IO.Stream! stream, MessagePack.MessagePackSerializerOptions? options = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) -> T -static MessagePack.MessagePackSerializer.Deserialize(System.ReadOnlyMemory buffer, MessagePack.MessagePackSerializerOptions? options = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) -> T -static MessagePack.MessagePackSerializer.Deserialize(System.ReadOnlyMemory buffer, MessagePack.MessagePackSerializerOptions? options, out int bytesRead, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) -> T -static MessagePack.MessagePackSerializer.Deserialize(System.ReadOnlyMemory buffer, out int bytesRead, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) -> T -static MessagePack.MessagePackSerializer.Deserialize(in System.Buffers.ReadOnlySequence byteSequence, MessagePack.MessagePackSerializerOptions? options = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) -> T -static MessagePack.MessagePackSerializer.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions? options = null) -> T -static MessagePack.MessagePackSerializer.DeserializeAsync(System.Type! type, System.IO.Stream! stream, MessagePack.MessagePackSerializerOptions? options = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) -> System.Threading.Tasks.ValueTask -static MessagePack.MessagePackSerializer.DeserializeAsync(System.IO.Stream! stream, MessagePack.MessagePackSerializerOptions? options = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) -> System.Threading.Tasks.ValueTask -static MessagePack.MessagePackSerializer.Serialize(System.Type! type, System.Buffers.IBufferWriter! writer, object? obj, MessagePack.MessagePackSerializerOptions? options = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) -> void -static MessagePack.MessagePackSerializer.Serialize(System.Type! type, System.IO.Stream! stream, object? obj, MessagePack.MessagePackSerializerOptions? options = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) -> void -static MessagePack.MessagePackSerializer.Serialize(System.Type! type, object? obj, MessagePack.MessagePackSerializerOptions? options = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) -> byte[]! -static MessagePack.MessagePackSerializer.Serialize(System.Type! type, ref MessagePack.MessagePackWriter writer, object? obj, MessagePack.MessagePackSerializerOptions? options = null) -> void -static MessagePack.MessagePackSerializer.Serialize(System.Buffers.IBufferWriter! writer, T value, MessagePack.MessagePackSerializerOptions? options = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) -> void -static MessagePack.MessagePackSerializer.Serialize(System.IO.Stream! stream, T value, MessagePack.MessagePackSerializerOptions? options = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) -> void -static MessagePack.MessagePackSerializer.Serialize(T value, MessagePack.MessagePackSerializerOptions? options = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) -> byte[]! -static MessagePack.MessagePackSerializer.Serialize(ref MessagePack.MessagePackWriter writer, T value, MessagePack.MessagePackSerializerOptions? options = null) -> void -static MessagePack.MessagePackSerializer.SerializeAsync(System.Type! type, System.IO.Stream! stream, object? obj, MessagePack.MessagePackSerializerOptions? options = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) -> System.Threading.Tasks.Task! -static MessagePack.MessagePackSerializer.SerializeAsync(System.IO.Stream! stream, T value, MessagePack.MessagePackSerializerOptions? options = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) -> System.Threading.Tasks.Task! -static MessagePack.MessagePackSerializer.SerializeToJson(System.IO.TextWriter! textWriter, T obj, MessagePack.MessagePackSerializerOptions? options = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) -> void -static MessagePack.MessagePackSerializer.SerializeToJson(T obj, MessagePack.MessagePackSerializerOptions? options = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) -> string! -static MessagePack.MessagePackSerializer.Typeless.DefaultOptions.get -> MessagePack.MessagePackSerializerOptions! -static MessagePack.MessagePackSerializer.Typeless.DefaultOptions.set -> void -static MessagePack.MessagePackSerializer.Typeless.Deserialize(System.IO.Stream! stream, MessagePack.MessagePackSerializerOptions? options = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) -> object? -static MessagePack.MessagePackSerializer.Typeless.Deserialize(System.Memory bytes, MessagePack.MessagePackSerializerOptions? options = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) -> object? -static MessagePack.MessagePackSerializer.Typeless.Deserialize(in System.Buffers.ReadOnlySequence byteSequence, MessagePack.MessagePackSerializerOptions? options = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) -> object? -static MessagePack.MessagePackSerializer.Typeless.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions? options = null) -> object? -static MessagePack.MessagePackSerializer.Typeless.DeserializeAsync(System.IO.Stream! stream, MessagePack.MessagePackSerializerOptions? options = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) -> System.Threading.Tasks.ValueTask -static MessagePack.MessagePackSerializer.Typeless.Serialize(System.Buffers.IBufferWriter! writer, object? obj, MessagePack.MessagePackSerializerOptions? options = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) -> void -static MessagePack.MessagePackSerializer.Typeless.Serialize(System.IO.Stream! stream, object? obj, MessagePack.MessagePackSerializerOptions? options = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) -> void -static MessagePack.MessagePackSerializer.Typeless.Serialize(object? obj, MessagePack.MessagePackSerializerOptions? options = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) -> byte[]! -static MessagePack.MessagePackSerializer.Typeless.Serialize(ref MessagePack.MessagePackWriter writer, object? obj, MessagePack.MessagePackSerializerOptions? options = null) -> void -static MessagePack.MessagePackSerializer.Typeless.SerializeAsync(System.IO.Stream! stream, object? obj, MessagePack.MessagePackSerializerOptions? options = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) -> System.Threading.Tasks.Task! -static MessagePack.MessagePackSerializerOptions.Standard.get -> MessagePack.MessagePackSerializerOptions! -static MessagePack.Resolvers.CompositeResolver.Create(System.Collections.Generic.IReadOnlyList! formatters, System.Collections.Generic.IReadOnlyList! resolvers) -> MessagePack.IFormatterResolver! -static MessagePack.Resolvers.CompositeResolver.Create(params MessagePack.Formatters.IMessagePackFormatter![]! formatters) -> MessagePack.IFormatterResolver! -static MessagePack.Resolvers.CompositeResolver.Create(params MessagePack.IFormatterResolver![]! resolvers) -> MessagePack.IFormatterResolver! -static readonly MessagePack.Formatters.BigIntegerFormatter.Instance -> MessagePack.Formatters.IMessagePackFormatter! -static readonly MessagePack.Formatters.BitArrayFormatter.Instance -> MessagePack.Formatters.IMessagePackFormatter! -static readonly MessagePack.Formatters.BooleanArrayFormatter.Instance -> MessagePack.Formatters.BooleanArrayFormatter! -static readonly MessagePack.Formatters.BooleanFormatter.Instance -> MessagePack.Formatters.BooleanFormatter! -static readonly MessagePack.Formatters.ByteArrayFormatter.Instance -> MessagePack.Formatters.ByteArrayFormatter! -static readonly MessagePack.Formatters.ByteArraySegmentFormatter.Instance -> MessagePack.Formatters.ByteArraySegmentFormatter! -static readonly MessagePack.Formatters.ByteFormatter.Instance -> MessagePack.Formatters.ByteFormatter! -static readonly MessagePack.Formatters.CharArrayFormatter.Instance -> MessagePack.Formatters.CharArrayFormatter! -static readonly MessagePack.Formatters.CharFormatter.Instance -> MessagePack.Formatters.CharFormatter! -static readonly MessagePack.Formatters.ComplexFormatter.Instance -> MessagePack.Formatters.IMessagePackFormatter! -static readonly MessagePack.Formatters.DateTimeArrayFormatter.Instance -> MessagePack.Formatters.DateTimeArrayFormatter! -static readonly MessagePack.Formatters.DateTimeFormatter.Instance -> MessagePack.Formatters.DateTimeFormatter! -static readonly MessagePack.Formatters.DateTimeOffsetFormatter.Instance -> MessagePack.Formatters.IMessagePackFormatter! -static readonly MessagePack.Formatters.DecimalFormatter.Instance -> MessagePack.Formatters.DecimalFormatter! -static readonly MessagePack.Formatters.DoubleArrayFormatter.Instance -> MessagePack.Formatters.DoubleArrayFormatter! -static readonly MessagePack.Formatters.DoubleFormatter.Instance -> MessagePack.Formatters.DoubleFormatter! -static readonly MessagePack.Formatters.DynamicObjectTypeFallbackFormatter.Instance -> MessagePack.Formatters.IMessagePackFormatter! -static readonly MessagePack.Formatters.ForceByteBlockFormatter.Instance -> MessagePack.Formatters.ForceByteBlockFormatter! -static readonly MessagePack.Formatters.ForceInt16BlockArrayFormatter.Instance -> MessagePack.Formatters.ForceInt16BlockArrayFormatter! -static readonly MessagePack.Formatters.ForceInt16BlockFormatter.Instance -> MessagePack.Formatters.ForceInt16BlockFormatter! -static readonly MessagePack.Formatters.ForceInt32BlockArrayFormatter.Instance -> MessagePack.Formatters.ForceInt32BlockArrayFormatter! -static readonly MessagePack.Formatters.ForceInt32BlockFormatter.Instance -> MessagePack.Formatters.ForceInt32BlockFormatter! -static readonly MessagePack.Formatters.ForceInt64BlockArrayFormatter.Instance -> MessagePack.Formatters.ForceInt64BlockArrayFormatter! -static readonly MessagePack.Formatters.ForceInt64BlockFormatter.Instance -> MessagePack.Formatters.ForceInt64BlockFormatter! -static readonly MessagePack.Formatters.ForceSByteBlockArrayFormatter.Instance -> MessagePack.Formatters.ForceSByteBlockArrayFormatter! -static readonly MessagePack.Formatters.ForceSByteBlockFormatter.Instance -> MessagePack.Formatters.ForceSByteBlockFormatter! -static readonly MessagePack.Formatters.ForceUInt16BlockArrayFormatter.Instance -> MessagePack.Formatters.ForceUInt16BlockArrayFormatter! -static readonly MessagePack.Formatters.ForceUInt16BlockFormatter.Instance -> MessagePack.Formatters.ForceUInt16BlockFormatter! -static readonly MessagePack.Formatters.ForceUInt32BlockArrayFormatter.Instance -> MessagePack.Formatters.ForceUInt32BlockArrayFormatter! -static readonly MessagePack.Formatters.ForceUInt32BlockFormatter.Instance -> MessagePack.Formatters.ForceUInt32BlockFormatter! -static readonly MessagePack.Formatters.ForceUInt64BlockArrayFormatter.Instance -> MessagePack.Formatters.ForceUInt64BlockArrayFormatter! -static readonly MessagePack.Formatters.ForceUInt64BlockFormatter.Instance -> MessagePack.Formatters.ForceUInt64BlockFormatter! -static readonly MessagePack.Formatters.GuidFormatter.Instance -> MessagePack.Formatters.IMessagePackFormatter! -static readonly MessagePack.Formatters.Int16ArrayFormatter.Instance -> MessagePack.Formatters.Int16ArrayFormatter! -static readonly MessagePack.Formatters.Int16Formatter.Instance -> MessagePack.Formatters.Int16Formatter! -static readonly MessagePack.Formatters.Int32ArrayFormatter.Instance -> MessagePack.Formatters.Int32ArrayFormatter! -static readonly MessagePack.Formatters.Int32Formatter.Instance -> MessagePack.Formatters.Int32Formatter! -static readonly MessagePack.Formatters.Int64ArrayFormatter.Instance -> MessagePack.Formatters.Int64ArrayFormatter! -static readonly MessagePack.Formatters.Int64Formatter.Instance -> MessagePack.Formatters.Int64Formatter! -static readonly MessagePack.Formatters.NativeDateTimeArrayFormatter.Instance -> MessagePack.Formatters.NativeDateTimeArrayFormatter! -static readonly MessagePack.Formatters.NativeDateTimeFormatter.Instance -> MessagePack.Formatters.NativeDateTimeFormatter! -static readonly MessagePack.Formatters.NativeDecimalFormatter.Instance -> MessagePack.Formatters.IMessagePackFormatter! -static readonly MessagePack.Formatters.NativeGuidFormatter.Instance -> MessagePack.Formatters.IMessagePackFormatter! -static readonly MessagePack.Formatters.NilFormatter.Instance -> MessagePack.Formatters.IMessagePackFormatter! -static readonly MessagePack.Formatters.NonGenericInterfaceDictionaryFormatter.Instance -> MessagePack.Formatters.IMessagePackFormatter! -static readonly MessagePack.Formatters.NonGenericInterfaceListFormatter.Instance -> MessagePack.Formatters.IMessagePackFormatter! -static readonly MessagePack.Formatters.NullableBooleanFormatter.Instance -> MessagePack.Formatters.NullableBooleanFormatter! -static readonly MessagePack.Formatters.NullableByteFormatter.Instance -> MessagePack.Formatters.NullableByteFormatter! -static readonly MessagePack.Formatters.NullableCharFormatter.Instance -> MessagePack.Formatters.NullableCharFormatter! -static readonly MessagePack.Formatters.NullableDateTimeFormatter.Instance -> MessagePack.Formatters.NullableDateTimeFormatter! -static readonly MessagePack.Formatters.NullableDoubleFormatter.Instance -> MessagePack.Formatters.NullableDoubleFormatter! -static readonly MessagePack.Formatters.NullableForceByteBlockFormatter.Instance -> MessagePack.Formatters.NullableForceByteBlockFormatter! -static readonly MessagePack.Formatters.NullableForceInt16BlockFormatter.Instance -> MessagePack.Formatters.NullableForceInt16BlockFormatter! -static readonly MessagePack.Formatters.NullableForceInt32BlockFormatter.Instance -> MessagePack.Formatters.NullableForceInt32BlockFormatter! -static readonly MessagePack.Formatters.NullableForceInt64BlockFormatter.Instance -> MessagePack.Formatters.NullableForceInt64BlockFormatter! -static readonly MessagePack.Formatters.NullableForceSByteBlockFormatter.Instance -> MessagePack.Formatters.NullableForceSByteBlockFormatter! -static readonly MessagePack.Formatters.NullableForceUInt16BlockFormatter.Instance -> MessagePack.Formatters.NullableForceUInt16BlockFormatter! -static readonly MessagePack.Formatters.NullableForceUInt32BlockFormatter.Instance -> MessagePack.Formatters.NullableForceUInt32BlockFormatter! -static readonly MessagePack.Formatters.NullableForceUInt64BlockFormatter.Instance -> MessagePack.Formatters.NullableForceUInt64BlockFormatter! -static readonly MessagePack.Formatters.NullableInt16Formatter.Instance -> MessagePack.Formatters.NullableInt16Formatter! -static readonly MessagePack.Formatters.NullableInt32Formatter.Instance -> MessagePack.Formatters.NullableInt32Formatter! -static readonly MessagePack.Formatters.NullableInt64Formatter.Instance -> MessagePack.Formatters.NullableInt64Formatter! -static readonly MessagePack.Formatters.NullableNilFormatter.Instance -> MessagePack.Formatters.IMessagePackFormatter! -static readonly MessagePack.Formatters.NullableSByteFormatter.Instance -> MessagePack.Formatters.NullableSByteFormatter! -static readonly MessagePack.Formatters.NullableSingleFormatter.Instance -> MessagePack.Formatters.NullableSingleFormatter! -static readonly MessagePack.Formatters.NullableStringArrayFormatter.Instance -> MessagePack.Formatters.NullableStringArrayFormatter! -static readonly MessagePack.Formatters.NullableStringFormatter.Instance -> MessagePack.Formatters.NullableStringFormatter! -static readonly MessagePack.Formatters.NullableUInt16Formatter.Instance -> MessagePack.Formatters.NullableUInt16Formatter! -static readonly MessagePack.Formatters.NullableUInt32Formatter.Instance -> MessagePack.Formatters.NullableUInt32Formatter! -static readonly MessagePack.Formatters.NullableUInt64Formatter.Instance -> MessagePack.Formatters.NullableUInt64Formatter! -static readonly MessagePack.Formatters.PrimitiveObjectFormatter.Instance -> MessagePack.Formatters.IMessagePackFormatter! -static readonly MessagePack.Formatters.SByteArrayFormatter.Instance -> MessagePack.Formatters.SByteArrayFormatter! -static readonly MessagePack.Formatters.SByteFormatter.Instance -> MessagePack.Formatters.SByteFormatter! -static readonly MessagePack.Formatters.SingleArrayFormatter.Instance -> MessagePack.Formatters.SingleArrayFormatter! -static readonly MessagePack.Formatters.SingleFormatter.Instance -> MessagePack.Formatters.SingleFormatter! -static readonly MessagePack.Formatters.StringBuilderFormatter.Instance -> MessagePack.Formatters.IMessagePackFormatter! -static readonly MessagePack.Formatters.TimeSpanFormatter.Instance -> MessagePack.Formatters.IMessagePackFormatter! -static readonly MessagePack.Formatters.TypelessFormatter.Instance -> MessagePack.Formatters.IMessagePackFormatter! -static readonly MessagePack.Formatters.UInt16ArrayFormatter.Instance -> MessagePack.Formatters.UInt16ArrayFormatter! -static readonly MessagePack.Formatters.UInt16Formatter.Instance -> MessagePack.Formatters.UInt16Formatter! -static readonly MessagePack.Formatters.UInt32ArrayFormatter.Instance -> MessagePack.Formatters.UInt32ArrayFormatter! -static readonly MessagePack.Formatters.UInt32Formatter.Instance -> MessagePack.Formatters.UInt32Formatter! -static readonly MessagePack.Formatters.UInt64ArrayFormatter.Instance -> MessagePack.Formatters.UInt64ArrayFormatter! -static readonly MessagePack.Formatters.UInt64Formatter.Instance -> MessagePack.Formatters.UInt64Formatter! -static readonly MessagePack.Formatters.UriFormatter.Instance -> MessagePack.Formatters.IMessagePackFormatter! -static readonly MessagePack.Formatters.VersionFormatter.Instance -> MessagePack.Formatters.IMessagePackFormatter! -static readonly MessagePack.Internal.AutomataKeyGen.GetKeyMethod -> System.Reflection.MethodInfo! -static readonly MessagePack.Internal.RuntimeTypeHandleEqualityComparer.Default -> System.Collections.Generic.IEqualityComparer! -static readonly MessagePack.Internal.UnsafeMemory.Is32Bit -> bool -static readonly MessagePack.Nil.Default -> MessagePack.Nil -static readonly MessagePack.Resolvers.AttributeFormatterResolver.Instance -> MessagePack.Resolvers.AttributeFormatterResolver! -static readonly MessagePack.Resolvers.BuiltinResolver.Instance -> MessagePack.Resolvers.BuiltinResolver! -static readonly MessagePack.Resolvers.ContractlessStandardResolver.Instance -> MessagePack.Resolvers.ContractlessStandardResolver! -static readonly MessagePack.Resolvers.ContractlessStandardResolver.Options -> MessagePack.MessagePackSerializerOptions! -static readonly MessagePack.Resolvers.ContractlessStandardResolverAllowPrivate.Instance -> MessagePack.Resolvers.ContractlessStandardResolverAllowPrivate! -static readonly MessagePack.Resolvers.ContractlessStandardResolverAllowPrivate.Options -> MessagePack.MessagePackSerializerOptions! -static readonly MessagePack.Resolvers.DynamicContractlessObjectResolver.Instance -> MessagePack.Resolvers.DynamicContractlessObjectResolver! -static readonly MessagePack.Resolvers.DynamicContractlessObjectResolverAllowPrivate.Instance -> MessagePack.Resolvers.DynamicContractlessObjectResolverAllowPrivate! -static readonly MessagePack.Resolvers.DynamicEnumAsStringResolver.Instance -> MessagePack.Resolvers.DynamicEnumAsStringResolver! -static readonly MessagePack.Resolvers.DynamicEnumAsStringResolver.Options -> MessagePack.MessagePackSerializerOptions! -static readonly MessagePack.Resolvers.DynamicEnumResolver.Instance -> MessagePack.Resolvers.DynamicEnumResolver! -static readonly MessagePack.Resolvers.DynamicGenericResolver.Instance -> MessagePack.Resolvers.DynamicGenericResolver! -static readonly MessagePack.Resolvers.DynamicObjectResolver.Instance -> MessagePack.Resolvers.DynamicObjectResolver! -static readonly MessagePack.Resolvers.DynamicObjectResolver.Options -> MessagePack.MessagePackSerializerOptions! -static readonly MessagePack.Resolvers.DynamicObjectResolverAllowPrivate.Instance -> MessagePack.Resolvers.DynamicObjectResolverAllowPrivate! -static readonly MessagePack.Resolvers.DynamicUnionResolver.Instance -> MessagePack.Resolvers.DynamicUnionResolver! -static readonly MessagePack.Resolvers.DynamicUnionResolver.Options -> MessagePack.MessagePackSerializerOptions! -static readonly MessagePack.Resolvers.NativeDateTimeResolver.Instance -> MessagePack.Resolvers.NativeDateTimeResolver! -static readonly MessagePack.Resolvers.NativeDateTimeResolver.Options -> MessagePack.MessagePackSerializerOptions! -static readonly MessagePack.Resolvers.NativeDecimalResolver.Instance -> MessagePack.Resolvers.NativeDecimalResolver! -static readonly MessagePack.Resolvers.NativeGuidResolver.Instance -> MessagePack.Resolvers.NativeGuidResolver! -static readonly MessagePack.Resolvers.PrimitiveObjectResolver.Instance -> MessagePack.Resolvers.PrimitiveObjectResolver! -static readonly MessagePack.Resolvers.PrimitiveObjectResolver.Options -> MessagePack.MessagePackSerializerOptions! -static readonly MessagePack.Resolvers.StandardResolver.Instance -> MessagePack.Resolvers.StandardResolver! -static readonly MessagePack.Resolvers.StandardResolver.Options -> MessagePack.MessagePackSerializerOptions! -static readonly MessagePack.Resolvers.StandardResolverAllowPrivate.Instance -> MessagePack.Resolvers.StandardResolverAllowPrivate! -static readonly MessagePack.Resolvers.StandardResolverAllowPrivate.Options -> MessagePack.MessagePackSerializerOptions! -static readonly MessagePack.Resolvers.StaticCompositeResolver.Instance -> MessagePack.Resolvers.StaticCompositeResolver! -static readonly MessagePack.Resolvers.TypelessContractlessStandardResolver.Instance -> MessagePack.Resolvers.TypelessContractlessStandardResolver! -static readonly MessagePack.Resolvers.TypelessContractlessStandardResolver.Options -> MessagePack.MessagePackSerializerOptions! -static readonly MessagePack.Resolvers.TypelessObjectResolver.Instance -> MessagePack.IFormatterResolver! -virtual MessagePack.Formatters.CollectionFormatterBase.GetCount(TCollection sequence) -> int? -virtual MessagePack.MessagePackSerializerOptions.Clone() -> MessagePack.MessagePackSerializerOptions! -virtual MessagePack.MessagePackSerializerOptions.LoadType(string! typeName) -> System.Type? -virtual MessagePack.MessagePackSerializerOptions.ThrowIfDeserializingTypeIsDisallowed(System.Type! type) -> void -MessagePack.ExtensionHeader.Equals(MessagePack.ExtensionHeader other) -> bool -MessagePack.Formatters.InterfaceCollectionFormatter2 -MessagePack.Formatters.InterfaceCollectionFormatter2.InterfaceCollectionFormatter2() -> void -MessagePack.Formatters.InterfaceListFormatter2 -MessagePack.Formatters.InterfaceListFormatter2.InterfaceListFormatter2() -> void -MessagePack.MessagePackReader.Depth.get -> int -MessagePack.MessagePackReader.Depth.set -> void -MessagePack.MessagePackReader.ReadDateTime(MessagePack.ExtensionHeader header) -> System.DateTime -MessagePack.MessagePackReader.TryReadArrayHeader(out int count) -> bool -MessagePack.MessagePackReader.TryReadExtensionFormatHeader(out MessagePack.ExtensionHeader extensionHeader) -> bool -MessagePack.MessagePackReader.TryReadMapHeader(out int count) -> bool -MessagePack.MessagePackSecurity -MessagePack.MessagePackSecurity.DepthStep(ref MessagePack.MessagePackReader reader) -> void -MessagePack.MessagePackSecurity.GetEqualityComparer() -> System.Collections.IEqualityComparer! -MessagePack.MessagePackSecurity.GetEqualityComparer() -> System.Collections.Generic.IEqualityComparer! -MessagePack.MessagePackSecurity.HashCollisionResistant.get -> bool -MessagePack.MessagePackSecurity.MaximumObjectGraphDepth.get -> int -MessagePack.MessagePackSecurity.MessagePackSecurity(MessagePack.MessagePackSecurity! copyFrom) -> void -MessagePack.MessagePackSecurity.WithHashCollisionResistant(bool hashCollisionResistant) -> MessagePack.MessagePackSecurity! -MessagePack.MessagePackSecurity.WithMaximumObjectGraphDepth(int maximumObjectGraphDepth) -> MessagePack.MessagePackSecurity! -MessagePack.MessagePackSerializerOptions.Security.get -> MessagePack.MessagePackSecurity! -MessagePack.MessagePackSerializerOptions.WithSecurity(MessagePack.MessagePackSecurity! security) -> MessagePack.MessagePackSerializerOptions! -MessagePack.MessagePackStreamReader.DiscardBufferedData() -> void -MessagePack.MessagePackStreamReader.MessagePackStreamReader(System.IO.Stream! stream, bool leaveOpen) -> void -MessagePack.MessagePackStreamReader.ReadArrayAsync(System.Threading.CancellationToken cancellationToken) -> System.Collections.Generic.IAsyncEnumerable>! -MessagePack.MessagePackWriter.WriteBinHeader(int length) -> void -MessagePack.MessagePackWriter.WriteStringHeader(int byteCount) -> void -static readonly MessagePack.MessagePackSecurity.TrustedData -> MessagePack.MessagePackSecurity! -static readonly MessagePack.MessagePackSecurity.UntrustedData -> MessagePack.MessagePackSecurity! -virtual MessagePack.MessagePackSecurity.Clone() -> MessagePack.MessagePackSecurity! -virtual MessagePack.MessagePackSecurity.GetHashCollisionResistantEqualityComparer() -> System.Collections.IEqualityComparer! -virtual MessagePack.MessagePackSecurity.GetHashCollisionResistantEqualityComparer() -> System.Collections.Generic.IEqualityComparer! -MessagePack.Formatters.ByteMemoryFormatter -MessagePack.Formatters.ByteMemoryFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> System.Memory -MessagePack.Formatters.ByteMemoryFormatter.Serialize(ref MessagePack.MessagePackWriter writer, System.Memory value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.ByteReadOnlyMemoryFormatter -MessagePack.Formatters.ByteReadOnlyMemoryFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> System.ReadOnlyMemory -MessagePack.Formatters.ByteReadOnlyMemoryFormatter.Serialize(ref MessagePack.MessagePackWriter writer, System.ReadOnlyMemory value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.ByteReadOnlySequenceFormatter -MessagePack.Formatters.ByteReadOnlySequenceFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> System.Buffers.ReadOnlySequence -MessagePack.Formatters.ByteReadOnlySequenceFormatter.Serialize(ref MessagePack.MessagePackWriter writer, System.Buffers.ReadOnlySequence value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.ExpandoObjectFormatter -MessagePack.Formatters.ExpandoObjectFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> System.Dynamic.ExpandoObject? -MessagePack.Formatters.ExpandoObjectFormatter.Serialize(ref MessagePack.MessagePackWriter writer, System.Dynamic.ExpandoObject? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.ForceTypelessFormatter -MessagePack.Formatters.ForceTypelessFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> T? -MessagePack.Formatters.ForceTypelessFormatter.ForceTypelessFormatter() -> void -MessagePack.Formatters.ForceTypelessFormatter.Serialize(ref MessagePack.MessagePackWriter writer, T? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.MemoryFormatter -MessagePack.Formatters.MemoryFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> System.Memory -MessagePack.Formatters.MemoryFormatter.MemoryFormatter() -> void -MessagePack.Formatters.MemoryFormatter.Serialize(ref MessagePack.MessagePackWriter writer, System.Memory value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.NonGenericInterfaceCollectionFormatter -MessagePack.Formatters.NonGenericInterfaceCollectionFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> System.Collections.ICollection? -MessagePack.Formatters.NonGenericInterfaceCollectionFormatter.Serialize(ref MessagePack.MessagePackWriter writer, System.Collections.ICollection? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.NonGenericInterfaceEnumerableFormatter -MessagePack.Formatters.NonGenericInterfaceEnumerableFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> System.Collections.IEnumerable? -MessagePack.Formatters.NonGenericInterfaceEnumerableFormatter.Serialize(ref MessagePack.MessagePackWriter writer, System.Collections.IEnumerable? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.PrimitiveObjectFormatter.PrimitiveObjectFormatter() -> void -MessagePack.Formatters.ReadOnlyMemoryFormatter -MessagePack.Formatters.ReadOnlyMemoryFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> System.ReadOnlyMemory -MessagePack.Formatters.ReadOnlyMemoryFormatter.ReadOnlyMemoryFormatter() -> void -MessagePack.Formatters.ReadOnlyMemoryFormatter.Serialize(ref MessagePack.MessagePackWriter writer, System.ReadOnlyMemory value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.ReadOnlySequenceFormatter -MessagePack.Formatters.ReadOnlySequenceFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> System.Buffers.ReadOnlySequence -MessagePack.Formatters.ReadOnlySequenceFormatter.ReadOnlySequenceFormatter() -> void -MessagePack.Formatters.ReadOnlySequenceFormatter.Serialize(ref MessagePack.MessagePackWriter writer, System.Buffers.ReadOnlySequence value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.TypeFormatter -MessagePack.Formatters.TypeFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> T? -MessagePack.Formatters.TypeFormatter.Serialize(ref MessagePack.MessagePackWriter writer, T? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.TypelessFormatter.TypelessFormatter() -> void -MessagePack.ImmutableCollection.ImmutableArrayFormatter -~MessagePack.ImmutableCollection.ImmutableArrayFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions options) -> System.Collections.Immutable.ImmutableArray -MessagePack.ImmutableCollection.ImmutableArrayFormatter.ImmutableArrayFormatter() -> void -~MessagePack.ImmutableCollection.ImmutableArrayFormatter.Serialize(ref MessagePack.MessagePackWriter writer, System.Collections.Immutable.ImmutableArray value, MessagePack.MessagePackSerializerOptions options) -> void -MessagePack.ImmutableCollection.ImmutableCollectionResolver -MessagePack.ImmutableCollection.ImmutableCollectionResolver.GetFormatter() -> MessagePack.Formatters.IMessagePackFormatter? -MessagePack.ImmutableCollection.ImmutableDictionaryFormatter -MessagePack.ImmutableCollection.ImmutableDictionaryFormatter.ImmutableDictionaryFormatter() -> void -MessagePack.ImmutableCollection.ImmutableHashSetFormatter -MessagePack.ImmutableCollection.ImmutableHashSetFormatter.ImmutableHashSetFormatter() -> void -MessagePack.ImmutableCollection.ImmutableListFormatter -MessagePack.ImmutableCollection.ImmutableListFormatter.ImmutableListFormatter() -> void -MessagePack.ImmutableCollection.ImmutableQueueBuilder -MessagePack.ImmutableCollection.ImmutableQueueBuilder.Add(T value) -> void -MessagePack.ImmutableCollection.ImmutableQueueBuilder.ImmutableQueueBuilder() -> void -~MessagePack.ImmutableCollection.ImmutableQueueBuilder.Q.get -> System.Collections.Immutable.ImmutableQueue -~MessagePack.ImmutableCollection.ImmutableQueueBuilder.Q.set -> void -MessagePack.ImmutableCollection.ImmutableQueueFormatter -MessagePack.ImmutableCollection.ImmutableQueueFormatter.ImmutableQueueFormatter() -> void -MessagePack.ImmutableCollection.ImmutableSortedDictionaryFormatter -MessagePack.ImmutableCollection.ImmutableSortedDictionaryFormatter.ImmutableSortedDictionaryFormatter() -> void -MessagePack.ImmutableCollection.ImmutableSortedSetFormatter -MessagePack.ImmutableCollection.ImmutableSortedSetFormatter.ImmutableSortedSetFormatter() -> void -MessagePack.ImmutableCollection.ImmutableStackFormatter -MessagePack.ImmutableCollection.ImmutableStackFormatter.ImmutableStackFormatter() -> void -MessagePack.ImmutableCollection.InterfaceImmutableDictionaryFormatter -MessagePack.ImmutableCollection.InterfaceImmutableDictionaryFormatter.InterfaceImmutableDictionaryFormatter() -> void -MessagePack.ImmutableCollection.InterfaceImmutableListFormatter -MessagePack.ImmutableCollection.InterfaceImmutableListFormatter.InterfaceImmutableListFormatter() -> void -MessagePack.ImmutableCollection.InterfaceImmutableQueueFormatter -MessagePack.ImmutableCollection.InterfaceImmutableQueueFormatter.InterfaceImmutableQueueFormatter() -> void -MessagePack.ImmutableCollection.InterfaceImmutableSetFormatter -MessagePack.ImmutableCollection.InterfaceImmutableSetFormatter.InterfaceImmutableSetFormatter() -> void -MessagePack.ImmutableCollection.InterfaceImmutableStackFormatter -MessagePack.ImmutableCollection.InterfaceImmutableStackFormatter.InterfaceImmutableStackFormatter() -> void -MessagePack.Resolvers.ExpandoObjectResolver -~override MessagePack.ImmutableCollection.ImmutableDictionaryFormatter.Add(System.Collections.Immutable.ImmutableDictionary.Builder collection, int index, TKey key, TValue value, MessagePack.MessagePackSerializerOptions options) -> void -~override MessagePack.ImmutableCollection.ImmutableDictionaryFormatter.Complete(System.Collections.Immutable.ImmutableDictionary.Builder intermediateCollection) -> System.Collections.Immutable.ImmutableDictionary -~override MessagePack.ImmutableCollection.ImmutableDictionaryFormatter.Create(int count, MessagePack.MessagePackSerializerOptions options) -> System.Collections.Immutable.ImmutableDictionary.Builder -~override MessagePack.ImmutableCollection.ImmutableDictionaryFormatter.GetSourceEnumerator(System.Collections.Immutable.ImmutableDictionary source) -> System.Collections.Immutable.ImmutableDictionary.Enumerator -~override MessagePack.ImmutableCollection.ImmutableHashSetFormatter.Add(System.Collections.Immutable.ImmutableHashSet.Builder collection, int index, T value, MessagePack.MessagePackSerializerOptions options) -> void -~override MessagePack.ImmutableCollection.ImmutableHashSetFormatter.Complete(System.Collections.Immutable.ImmutableHashSet.Builder intermediateCollection) -> System.Collections.Immutable.ImmutableHashSet -~override MessagePack.ImmutableCollection.ImmutableHashSetFormatter.Create(int count, MessagePack.MessagePackSerializerOptions options) -> System.Collections.Immutable.ImmutableHashSet.Builder -~override MessagePack.ImmutableCollection.ImmutableHashSetFormatter.GetSourceEnumerator(System.Collections.Immutable.ImmutableHashSet source) -> System.Collections.Immutable.ImmutableHashSet.Enumerator -~override MessagePack.ImmutableCollection.ImmutableListFormatter.Add(System.Collections.Immutable.ImmutableList.Builder collection, int index, T value, MessagePack.MessagePackSerializerOptions options) -> void -~override MessagePack.ImmutableCollection.ImmutableListFormatter.Complete(System.Collections.Immutable.ImmutableList.Builder intermediateCollection) -> System.Collections.Immutable.ImmutableList -~override MessagePack.ImmutableCollection.ImmutableListFormatter.Create(int count, MessagePack.MessagePackSerializerOptions options) -> System.Collections.Immutable.ImmutableList.Builder -~override MessagePack.ImmutableCollection.ImmutableListFormatter.GetSourceEnumerator(System.Collections.Immutable.ImmutableList source) -> System.Collections.Immutable.ImmutableList.Enumerator -~override MessagePack.ImmutableCollection.ImmutableQueueFormatter.Add(MessagePack.ImmutableCollection.ImmutableQueueBuilder collection, int index, T value, MessagePack.MessagePackSerializerOptions options) -> void -~override MessagePack.ImmutableCollection.ImmutableQueueFormatter.Complete(MessagePack.ImmutableCollection.ImmutableQueueBuilder intermediateCollection) -> System.Collections.Immutable.ImmutableQueue -~override MessagePack.ImmutableCollection.ImmutableQueueFormatter.Create(int count, MessagePack.MessagePackSerializerOptions options) -> MessagePack.ImmutableCollection.ImmutableQueueBuilder -~override MessagePack.ImmutableCollection.ImmutableSortedDictionaryFormatter.Add(System.Collections.Immutable.ImmutableSortedDictionary.Builder collection, int index, TKey key, TValue value, MessagePack.MessagePackSerializerOptions options) -> void -~override MessagePack.ImmutableCollection.ImmutableSortedDictionaryFormatter.Complete(System.Collections.Immutable.ImmutableSortedDictionary.Builder intermediateCollection) -> System.Collections.Immutable.ImmutableSortedDictionary -~override MessagePack.ImmutableCollection.ImmutableSortedDictionaryFormatter.Create(int count, MessagePack.MessagePackSerializerOptions options) -> System.Collections.Immutable.ImmutableSortedDictionary.Builder -~override MessagePack.ImmutableCollection.ImmutableSortedDictionaryFormatter.GetSourceEnumerator(System.Collections.Immutable.ImmutableSortedDictionary source) -> System.Collections.Immutable.ImmutableSortedDictionary.Enumerator -~override MessagePack.ImmutableCollection.ImmutableSortedSetFormatter.Add(System.Collections.Immutable.ImmutableSortedSet.Builder collection, int index, T value, MessagePack.MessagePackSerializerOptions options) -> void -~override MessagePack.ImmutableCollection.ImmutableSortedSetFormatter.Complete(System.Collections.Immutable.ImmutableSortedSet.Builder intermediateCollection) -> System.Collections.Immutable.ImmutableSortedSet -~override MessagePack.ImmutableCollection.ImmutableSortedSetFormatter.Create(int count, MessagePack.MessagePackSerializerOptions options) -> System.Collections.Immutable.ImmutableSortedSet.Builder -~override MessagePack.ImmutableCollection.ImmutableSortedSetFormatter.GetSourceEnumerator(System.Collections.Immutable.ImmutableSortedSet source) -> System.Collections.Immutable.ImmutableSortedSet.Enumerator -~override MessagePack.ImmutableCollection.ImmutableStackFormatter.Add(T[] collection, int index, T value, MessagePack.MessagePackSerializerOptions options) -> void -~override MessagePack.ImmutableCollection.ImmutableStackFormatter.Complete(T[] intermediateCollection) -> System.Collections.Immutable.ImmutableStack -~override MessagePack.ImmutableCollection.ImmutableStackFormatter.Create(int count, MessagePack.MessagePackSerializerOptions options) -> T[] -~override MessagePack.ImmutableCollection.InterfaceImmutableDictionaryFormatter.Add(System.Collections.Immutable.ImmutableDictionary.Builder collection, int index, TKey key, TValue value, MessagePack.MessagePackSerializerOptions options) -> void -~override MessagePack.ImmutableCollection.InterfaceImmutableDictionaryFormatter.Complete(System.Collections.Immutable.ImmutableDictionary.Builder intermediateCollection) -> System.Collections.Immutable.IImmutableDictionary -~override MessagePack.ImmutableCollection.InterfaceImmutableDictionaryFormatter.Create(int count, MessagePack.MessagePackSerializerOptions options) -> System.Collections.Immutable.ImmutableDictionary.Builder -~override MessagePack.ImmutableCollection.InterfaceImmutableListFormatter.Add(System.Collections.Immutable.ImmutableList.Builder collection, int index, T value, MessagePack.MessagePackSerializerOptions options) -> void -~override MessagePack.ImmutableCollection.InterfaceImmutableListFormatter.Complete(System.Collections.Immutable.ImmutableList.Builder intermediateCollection) -> System.Collections.Immutable.IImmutableList -~override MessagePack.ImmutableCollection.InterfaceImmutableListFormatter.Create(int count, MessagePack.MessagePackSerializerOptions options) -> System.Collections.Immutable.ImmutableList.Builder -~override MessagePack.ImmutableCollection.InterfaceImmutableQueueFormatter.Add(MessagePack.ImmutableCollection.ImmutableQueueBuilder collection, int index, T value, MessagePack.MessagePackSerializerOptions options) -> void -~override MessagePack.ImmutableCollection.InterfaceImmutableQueueFormatter.Complete(MessagePack.ImmutableCollection.ImmutableQueueBuilder intermediateCollection) -> System.Collections.Immutable.IImmutableQueue -~override MessagePack.ImmutableCollection.InterfaceImmutableQueueFormatter.Create(int count, MessagePack.MessagePackSerializerOptions options) -> MessagePack.ImmutableCollection.ImmutableQueueBuilder -~override MessagePack.ImmutableCollection.InterfaceImmutableSetFormatter.Add(System.Collections.Immutable.ImmutableHashSet.Builder collection, int index, T value, MessagePack.MessagePackSerializerOptions options) -> void -~override MessagePack.ImmutableCollection.InterfaceImmutableSetFormatter.Complete(System.Collections.Immutable.ImmutableHashSet.Builder intermediateCollection) -> System.Collections.Immutable.IImmutableSet -~override MessagePack.ImmutableCollection.InterfaceImmutableSetFormatter.Create(int count, MessagePack.MessagePackSerializerOptions options) -> System.Collections.Immutable.ImmutableHashSet.Builder -~override MessagePack.ImmutableCollection.InterfaceImmutableStackFormatter.Add(T[] collection, int index, T value, MessagePack.MessagePackSerializerOptions options) -> void -~override MessagePack.ImmutableCollection.InterfaceImmutableStackFormatter.Complete(T[] intermediateCollection) -> System.Collections.Immutable.IImmutableStack -~override MessagePack.ImmutableCollection.InterfaceImmutableStackFormatter.Create(int count, MessagePack.MessagePackSerializerOptions options) -> T[] -static readonly MessagePack.Formatters.ByteMemoryFormatter.Instance -> MessagePack.Formatters.ByteMemoryFormatter! -static readonly MessagePack.Formatters.ByteReadOnlyMemoryFormatter.Instance -> MessagePack.Formatters.ByteReadOnlyMemoryFormatter! -static readonly MessagePack.Formatters.ByteReadOnlySequenceFormatter.Instance -> MessagePack.Formatters.ByteReadOnlySequenceFormatter! -static readonly MessagePack.Formatters.ExpandoObjectFormatter.Instance -> MessagePack.Formatters.IMessagePackFormatter! -static readonly MessagePack.Formatters.NonGenericInterfaceCollectionFormatter.Instance -> MessagePack.Formatters.IMessagePackFormatter! -static readonly MessagePack.Formatters.NonGenericInterfaceEnumerableFormatter.Instance -> MessagePack.Formatters.IMessagePackFormatter! -static readonly MessagePack.Formatters.TypeFormatter.Instance -> MessagePack.Formatters.IMessagePackFormatter! -static readonly MessagePack.ImmutableCollection.ImmutableCollectionResolver.Instance -> MessagePack.ImmutableCollection.ImmutableCollectionResolver! -static readonly MessagePack.Resolvers.ExpandoObjectResolver.Instance -> MessagePack.IFormatterResolver! -static readonly MessagePack.Resolvers.ExpandoObjectResolver.Options -> MessagePack.MessagePackSerializerOptions! -virtual MessagePack.Formatters.PrimitiveObjectFormatter.DeserializeMap(ref MessagePack.MessagePackReader reader, int length, MessagePack.MessagePackSerializerOptions! options) -> object! -MessagePack.ExtensionHeader.ExtensionHeader() -> void -MessagePack.ExtensionResult.ExtensionResult() -> void -MessagePack.FormatterNotRegisteredException.FormatterNotRegisteredException(System.Runtime.Serialization.SerializationInfo! info, System.Runtime.Serialization.StreamingContext context) -> void -MessagePack.MessagePackReader.MessagePackReader() -> void -MessagePack.MessagePackSerializerOptions.SequencePool.get -> MessagePack.SequencePool! -MessagePack.MessagePackSerializerOptions.WithPool(MessagePack.SequencePool! pool) -> MessagePack.MessagePackSerializerOptions! -MessagePack.MessagePackStreamReader.MessagePackStreamReader(System.IO.Stream! stream, bool leaveOpen, MessagePack.SequencePool! sequencePool) -> void -MessagePack.MessagePackStreamReader.ReadArrayHeaderAsync(System.Threading.CancellationToken cancellationToken) -> System.Threading.Tasks.ValueTask -MessagePack.MessagePackStreamReader.ReadMapHeaderAsync(System.Threading.CancellationToken cancellationToken) -> System.Threading.Tasks.ValueTask -MessagePack.MessagePackWriter.MessagePackWriter() -> void -MessagePack.SequencePool -MessagePack.SequencePool.SequencePool() -> void -MessagePack.SequencePool.SequencePool(int maxSize) -> void -MessagePack.SequencePool.SequencePool(int maxSize, System.Buffers.ArrayPool! arrayPool) -> void -MessagePack.SequencePool.SequencePool(int maxSize, System.Buffers.MemoryPool! memoryPool) -> void -MessagePack.TinyJsonException.TinyJsonException(System.Runtime.Serialization.SerializationInfo! info, System.Runtime.Serialization.StreamingContext context) -> void -static MessagePack.Nil.operator !=(MessagePack.Nil left, MessagePack.Nil right) -> bool -static MessagePack.Nil.operator ==(MessagePack.Nil left, MessagePack.Nil right) -> bool -virtual MessagePack.MessagePackStreamReader.Dispose(bool disposing) -> void -MessagePack.Formatters.GenericEnumerableFormatter -MessagePack.Formatters.GenericEnumerableFormatter.GenericEnumerableFormatter() -> void -MessagePack.Formatters.GenericReadOnlyDictionaryFormatter -MessagePack.Formatters.GenericReadOnlyDictionaryFormatter.GenericReadOnlyDictionaryFormatter() -> void -MessagePack.Formatters.StringInterningFormatter -MessagePack.Formatters.StringInterningFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> string? -MessagePack.Formatters.StringInterningFormatter.Serialize(ref MessagePack.MessagePackWriter writer, string? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.StringInterningFormatter.StringInterningFormatter() -> void -MessagePack.MessagePackSerializerOptions.CompressionMinLength.get -> int -MessagePack.MessagePackSerializerOptions.SuggestedContiguousMemorySize.get -> int -MessagePack.MessagePackSerializerOptions.WithCompressionMinLength(int compressionMinLength) -> MessagePack.MessagePackSerializerOptions! -MessagePack.MessagePackSerializerOptions.WithSuggestedContiguousMemorySize(int suggestedContiguousMemorySize) -> MessagePack.MessagePackSerializerOptions! -static MessagePack.MessagePackWriter.GetEncodedLength(long value) -> int -static MessagePack.MessagePackWriter.GetEncodedLength(ulong value) -> int -const MessagePack.ReservedExtensionTypeCodes.Lz4Block = 99 -> sbyte -const MessagePack.ReservedExtensionTypeCodes.Lz4BlockArray = 98 -> sbyte -const MessagePack.ReservedExtensionTypeCodes.TypelessFormatter = 100 -> sbyte -const MessagePack.ReservedExtensionTypeCodes.UnityBounds = 35 -> sbyte -const MessagePack.ReservedExtensionTypeCodes.UnityColor = 34 -> sbyte -const MessagePack.ReservedExtensionTypeCodes.UnityDouble = 39 -> sbyte -const MessagePack.ReservedExtensionTypeCodes.UnityFloat = 38 -> sbyte -const MessagePack.ReservedExtensionTypeCodes.UnityInt = 37 -> sbyte -const MessagePack.ReservedExtensionTypeCodes.UnityQuaternion = 33 -> sbyte -const MessagePack.ReservedExtensionTypeCodes.UnityRect = 36 -> sbyte -const MessagePack.ReservedExtensionTypeCodes.UnityVector2 = 30 -> sbyte -const MessagePack.ReservedExtensionTypeCodes.UnityVector3 = 31 -> sbyte -const MessagePack.ReservedExtensionTypeCodes.UnityVector4 = 32 -> sbyte -MessagePack.CompositeResolverAttribute -MessagePack.CompositeResolverAttribute.CompositeResolverAttribute(params System.Type![]! formattersAndResolvers) -> void -MessagePack.CompositeResolverAttribute.IncludeLocalFormatters.get -> bool -MessagePack.CompositeResolverAttribute.IncludeLocalFormatters.set -> void -MessagePack.Formatters.EnumAsStringFormatter.EnumAsStringFormatter(bool ignoreCase) -> void -MessagePack.Formatters.Matrix3x2Formatter -MessagePack.Formatters.Matrix3x2Formatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> System.Numerics.Matrix3x2 -MessagePack.Formatters.Matrix3x2Formatter.Serialize(ref MessagePack.MessagePackWriter writer, System.Numerics.Matrix3x2 value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.Matrix4x4Formatter -MessagePack.Formatters.Matrix4x4Formatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> System.Numerics.Matrix4x4 -MessagePack.Formatters.Matrix4x4Formatter.Serialize(ref MessagePack.MessagePackWriter writer, System.Numerics.Matrix4x4 value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.QuaternionFormatter -MessagePack.Formatters.QuaternionFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> System.Numerics.Quaternion -MessagePack.Formatters.QuaternionFormatter.Serialize(ref MessagePack.MessagePackWriter writer, System.Numerics.Quaternion value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.Vector2Formatter -MessagePack.Formatters.Vector2Formatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> System.Numerics.Vector2 -MessagePack.Formatters.Vector2Formatter.Serialize(ref MessagePack.MessagePackWriter writer, System.Numerics.Vector2 value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.Vector3Formatter -MessagePack.Formatters.Vector3Formatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> System.Numerics.Vector3 -MessagePack.Formatters.Vector3Formatter.Serialize(ref MessagePack.MessagePackWriter writer, System.Numerics.Vector3 value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.Vector4Formatter -MessagePack.Formatters.Vector4Formatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> System.Numerics.Vector4 -MessagePack.Formatters.Vector4Formatter.Serialize(ref MessagePack.MessagePackWriter writer, System.Numerics.Vector4 value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.GeneratedMessagePackResolverAttribute -MessagePack.GeneratedMessagePackResolverAttribute.GeneratedMessagePackResolverAttribute() -> void -MessagePack.GeneratedMessagePackResolverAttribute.UseMapMode.get -> bool -MessagePack.GeneratedMessagePackResolverAttribute.UseMapMode.set -> void -MessagePack.Internal.GeneratedAssemblyMessagePackResolverAttribute -MessagePack.Internal.GeneratedAssemblyMessagePackResolverAttribute.GeneratedAssemblyMessagePackResolverAttribute(System.Type! resolverType, int majorVersion, int minorVersion) -> void -MessagePack.Internal.GeneratedAssemblyMessagePackResolverAttribute.MajorVersion.get -> int -MessagePack.Internal.GeneratedAssemblyMessagePackResolverAttribute.MinorVersion.get -> int -MessagePack.Internal.GeneratedAssemblyMessagePackResolverAttribute.ResolverType.get -> System.Type! -MessagePack.MessagePackPrimitives -MessagePack.MessagePackPrimitives.DecodeResult -MessagePack.MessagePackPrimitives.DecodeResult.EmptyBuffer = 2 -> MessagePack.MessagePackPrimitives.DecodeResult -MessagePack.MessagePackPrimitives.DecodeResult.InsufficientBuffer = 3 -> MessagePack.MessagePackPrimitives.DecodeResult -MessagePack.MessagePackPrimitives.DecodeResult.Success = 0 -> MessagePack.MessagePackPrimitives.DecodeResult -MessagePack.MessagePackPrimitives.DecodeResult.TokenMismatch = 1 -> MessagePack.MessagePackPrimitives.DecodeResult -MessagePack.ReservedExtensionTypeCodes -MessagePack.Resolvers.DynamicEnumAsStringIgnoreCaseResolver -MessagePack.Resolvers.DynamicEnumAsStringIgnoreCaseResolver.GetFormatter() -> MessagePack.Formatters.IMessagePackFormatter? -MessagePack.Resolvers.SourceGeneratedFormatterResolver -MessagePack.Resolvers.SourceGeneratedFormatterResolver.GetFormatter() -> MessagePack.Formatters.IMessagePackFormatter? -MessagePack.SequencePool.Clear() -> void -static MessagePack.MessagePackPrimitives.TryReadArrayHeader(System.ReadOnlySpan source, out uint count, out int tokenSize) -> MessagePack.MessagePackPrimitives.DecodeResult -static MessagePack.MessagePackPrimitives.TryReadBinHeader(System.ReadOnlySpan source, out uint length, out int tokenSize) -> MessagePack.MessagePackPrimitives.DecodeResult -static MessagePack.MessagePackPrimitives.TryReadBool(System.ReadOnlySpan source, out bool value, out int tokenSize) -> MessagePack.MessagePackPrimitives.DecodeResult -static MessagePack.MessagePackPrimitives.TryReadByte(System.ReadOnlySpan source, out byte value, out int tokenSize) -> MessagePack.MessagePackPrimitives.DecodeResult -static MessagePack.MessagePackPrimitives.TryReadChar(System.ReadOnlySpan source, out char value, out int tokenSize) -> MessagePack.MessagePackPrimitives.DecodeResult -static MessagePack.MessagePackPrimitives.TryReadDateTime(System.ReadOnlySpan source, MessagePack.ExtensionHeader header, out System.DateTime value, out int tokenSize) -> MessagePack.MessagePackPrimitives.DecodeResult -static MessagePack.MessagePackPrimitives.TryReadDateTime(System.ReadOnlySpan source, out System.DateTime value, out int tokenSize) -> MessagePack.MessagePackPrimitives.DecodeResult -static MessagePack.MessagePackPrimitives.TryReadDouble(System.ReadOnlySpan source, out double value, out int tokenSize) -> MessagePack.MessagePackPrimitives.DecodeResult -static MessagePack.MessagePackPrimitives.TryReadExtensionHeader(System.ReadOnlySpan source, out MessagePack.ExtensionHeader extensionHeader, out int tokenSize) -> MessagePack.MessagePackPrimitives.DecodeResult -static MessagePack.MessagePackPrimitives.TryReadInt16(System.ReadOnlySpan source, out short value, out int tokenSize) -> MessagePack.MessagePackPrimitives.DecodeResult -static MessagePack.MessagePackPrimitives.TryReadInt32(System.ReadOnlySpan source, out int value, out int tokenSize) -> MessagePack.MessagePackPrimitives.DecodeResult -static MessagePack.MessagePackPrimitives.TryReadInt64(System.ReadOnlySpan source, out long value, out int tokenSize) -> MessagePack.MessagePackPrimitives.DecodeResult -static MessagePack.MessagePackPrimitives.TryReadMapHeader(System.ReadOnlySpan source, out uint count, out int tokenSize) -> MessagePack.MessagePackPrimitives.DecodeResult -static MessagePack.MessagePackPrimitives.TryReadNil(System.ReadOnlySpan source, out int tokenSize) -> MessagePack.MessagePackPrimitives.DecodeResult -static MessagePack.MessagePackPrimitives.TryReadSByte(System.ReadOnlySpan source, out sbyte value, out int tokenSize) -> MessagePack.MessagePackPrimitives.DecodeResult -static MessagePack.MessagePackPrimitives.TryReadSingle(System.ReadOnlySpan source, out float value, out int tokenSize) -> MessagePack.MessagePackPrimitives.DecodeResult -static MessagePack.MessagePackPrimitives.TryReadStringHeader(System.ReadOnlySpan source, out uint length, out int tokenSize) -> MessagePack.MessagePackPrimitives.DecodeResult -static MessagePack.MessagePackPrimitives.TryReadUInt16(System.ReadOnlySpan source, out ushort value, out int tokenSize) -> MessagePack.MessagePackPrimitives.DecodeResult -static MessagePack.MessagePackPrimitives.TryReadUInt32(System.ReadOnlySpan source, out uint value, out int tokenSize) -> MessagePack.MessagePackPrimitives.DecodeResult -static MessagePack.MessagePackPrimitives.TryReadUInt64(System.ReadOnlySpan source, out ulong value, out int tokenSize) -> MessagePack.MessagePackPrimitives.DecodeResult -static MessagePack.MessagePackPrimitives.TryWrite(System.Span destination, bool value, out int bytesWritten) -> bool -static MessagePack.MessagePackPrimitives.TryWrite(System.Span destination, byte value, out int bytesWritten) -> bool -static MessagePack.MessagePackPrimitives.TryWrite(System.Span destination, char value, out int bytesWritten) -> bool -static MessagePack.MessagePackPrimitives.TryWrite(System.Span destination, double value, out int bytesWritten) -> bool -static MessagePack.MessagePackPrimitives.TryWrite(System.Span destination, float value, out int bytesWritten) -> bool -static MessagePack.MessagePackPrimitives.TryWrite(System.Span destination, int value, out int bytesWritten) -> bool -static MessagePack.MessagePackPrimitives.TryWrite(System.Span destination, long value, out int bytesWritten) -> bool -static MessagePack.MessagePackPrimitives.TryWrite(System.Span destination, sbyte value, out int bytesWritten) -> bool -static MessagePack.MessagePackPrimitives.TryWrite(System.Span destination, short value, out int bytesWritten) -> bool -static MessagePack.MessagePackPrimitives.TryWrite(System.Span destination, System.DateTime value, out int bytesWritten) -> bool -static MessagePack.MessagePackPrimitives.TryWrite(System.Span destination, uint value, out int bytesWritten) -> bool -static MessagePack.MessagePackPrimitives.TryWrite(System.Span destination, ulong value, out int bytesWritten) -> bool -static MessagePack.MessagePackPrimitives.TryWrite(System.Span destination, ushort value, out int bytesWritten) -> bool -static MessagePack.MessagePackPrimitives.TryWriteArrayHeader(System.Span destination, uint count, out int bytesWritten) -> bool -static MessagePack.MessagePackPrimitives.TryWriteBinHeader(System.Span destination, uint length, out int bytesWritten) -> bool -static MessagePack.MessagePackPrimitives.TryWriteExtensionFormatHeader(System.Span destination, MessagePack.ExtensionHeader extensionHeader, out int bytesWritten) -> bool -static MessagePack.MessagePackPrimitives.TryWriteInt16(System.Span destination, short value, out int bytesWritten) -> bool -static MessagePack.MessagePackPrimitives.TryWriteInt32(System.Span destination, int value, out int bytesWritten) -> bool -static MessagePack.MessagePackPrimitives.TryWriteInt64(System.Span destination, long value, out int bytesWritten) -> bool -static MessagePack.MessagePackPrimitives.TryWriteInt8(System.Span destination, sbyte value, out int bytesWritten) -> bool -static MessagePack.MessagePackPrimitives.TryWriteMapHeader(System.Span destination, uint count, out int bytesWritten) -> bool -static MessagePack.MessagePackPrimitives.TryWriteNil(System.Span destination, out int bytesWritten) -> bool -static MessagePack.MessagePackPrimitives.TryWriteStringHeader(System.Span destination, uint byteCount, out int bytesWritten) -> bool -static MessagePack.MessagePackPrimitives.TryWriteUInt16(System.Span destination, ushort value, out int bytesWritten) -> bool -static MessagePack.MessagePackPrimitives.TryWriteUInt32(System.Span destination, uint value, out int bytesWritten) -> bool -static MessagePack.MessagePackPrimitives.TryWriteUInt64(System.Span destination, ulong value, out int bytesWritten) -> bool -static MessagePack.MessagePackPrimitives.TryWriteUInt8(System.Span destination, byte value, out int bytesWritten) -> bool -static readonly MessagePack.Formatters.Matrix3x2Formatter.Instance -> MessagePack.Formatters.IMessagePackFormatter! -static readonly MessagePack.Formatters.Matrix4x4Formatter.Instance -> MessagePack.Formatters.IMessagePackFormatter! -static readonly MessagePack.Formatters.QuaternionFormatter.Instance -> MessagePack.Formatters.IMessagePackFormatter! -static readonly MessagePack.Formatters.Vector2Formatter.Instance -> MessagePack.Formatters.IMessagePackFormatter! -static readonly MessagePack.Formatters.Vector3Formatter.Instance -> MessagePack.Formatters.IMessagePackFormatter! -static readonly MessagePack.Formatters.Vector4Formatter.Instance -> MessagePack.Formatters.IMessagePackFormatter! -static readonly MessagePack.Resolvers.DynamicEnumAsStringIgnoreCaseResolver.Instance -> MessagePack.Resolvers.DynamicEnumAsStringIgnoreCaseResolver! -static readonly MessagePack.Resolvers.SourceGeneratedFormatterResolver.Instance -> MessagePack.Resolvers.SourceGeneratedFormatterResolver! -static MessagePack.MessagePackSerializer.Typeless.Deserialize(System.ReadOnlyMemory bytes, MessagePack.MessagePackSerializerOptions? options = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) -> object? diff --git a/src/MessagePack/net472/PublicAPI.Unshipped.txt b/src/MessagePack/net472/PublicAPI.Unshipped.txt deleted file mode 100644 index e69de29bb..000000000 diff --git a/src/MessagePack/net8.0/PublicAPI.Shipped.txt b/src/MessagePack/net8.0/PublicAPI.Shipped.txt deleted file mode 100644 index 9b4a9bff6..000000000 --- a/src/MessagePack/net8.0/PublicAPI.Shipped.txt +++ /dev/null @@ -1,1388 +0,0 @@ -#nullable enable -MessagePack.ExtensionHeader -MessagePack.ExtensionHeader.ExtensionHeader(sbyte typeCode, int length) -> void -MessagePack.ExtensionHeader.ExtensionHeader(sbyte typeCode, uint length) -> void -MessagePack.ExtensionHeader.Length.get -> uint -MessagePack.ExtensionHeader.TypeCode.get -> sbyte -MessagePack.ExtensionResult -MessagePack.ExtensionResult.Data.get -> System.Buffers.ReadOnlySequence -MessagePack.ExtensionResult.ExtensionResult(sbyte typeCode, System.Buffers.ReadOnlySequence data) -> void -MessagePack.ExtensionResult.ExtensionResult(sbyte typeCode, System.Memory data) -> void -MessagePack.ExtensionResult.Header.get -> MessagePack.ExtensionHeader -MessagePack.ExtensionResult.TypeCode.get -> sbyte -MessagePack.FormatterNotRegisteredException -MessagePack.FormatterNotRegisteredException.FormatterNotRegisteredException(string? message) -> void -MessagePack.FormatterResolverExtensions -MessagePack.Formatters.ArrayFormatter -MessagePack.Formatters.ArrayFormatter.ArrayFormatter() -> void -MessagePack.Formatters.ArrayFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> T[]? -MessagePack.Formatters.ArrayFormatter.Serialize(ref MessagePack.MessagePackWriter writer, T[]? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.ArraySegmentFormatter -MessagePack.Formatters.ArraySegmentFormatter.ArraySegmentFormatter() -> void -MessagePack.Formatters.ArraySegmentFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> System.ArraySegment -MessagePack.Formatters.ArraySegmentFormatter.Serialize(ref MessagePack.MessagePackWriter writer, System.ArraySegment value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.BigIntegerFormatter -MessagePack.Formatters.BigIntegerFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> System.Numerics.BigInteger -MessagePack.Formatters.BigIntegerFormatter.Serialize(ref MessagePack.MessagePackWriter writer, System.Numerics.BigInteger value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.BitArrayFormatter -MessagePack.Formatters.BitArrayFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> System.Collections.BitArray? -MessagePack.Formatters.BitArrayFormatter.Serialize(ref MessagePack.MessagePackWriter writer, System.Collections.BitArray? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.BooleanArrayFormatter -MessagePack.Formatters.BooleanArrayFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> bool[]? -MessagePack.Formatters.BooleanArrayFormatter.Serialize(ref MessagePack.MessagePackWriter writer, bool[]? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.BooleanFormatter -MessagePack.Formatters.BooleanFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> bool -MessagePack.Formatters.BooleanFormatter.Serialize(ref MessagePack.MessagePackWriter writer, bool value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.ByteArrayFormatter -MessagePack.Formatters.ByteArrayFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> byte[]? -MessagePack.Formatters.ByteArrayFormatter.Serialize(ref MessagePack.MessagePackWriter writer, byte[]? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.ByteArraySegmentFormatter -MessagePack.Formatters.ByteArraySegmentFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> System.ArraySegment -MessagePack.Formatters.ByteArraySegmentFormatter.Serialize(ref MessagePack.MessagePackWriter writer, System.ArraySegment value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.ByteFormatter -MessagePack.Formatters.ByteFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> byte -MessagePack.Formatters.ByteFormatter.Serialize(ref MessagePack.MessagePackWriter writer, byte value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.CharArrayFormatter -MessagePack.Formatters.CharArrayFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> char[]? -MessagePack.Formatters.CharArrayFormatter.Serialize(ref MessagePack.MessagePackWriter writer, char[]? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.CharFormatter -MessagePack.Formatters.CharFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> char -MessagePack.Formatters.CharFormatter.Serialize(ref MessagePack.MessagePackWriter writer, char value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.CollectionFormatterBase -MessagePack.Formatters.CollectionFormatterBase.CollectionFormatterBase() -> void -MessagePack.Formatters.CollectionFormatterBase -MessagePack.Formatters.CollectionFormatterBase.CollectionFormatterBase() -> void -MessagePack.Formatters.CollectionFormatterBase -MessagePack.Formatters.CollectionFormatterBase.CollectionFormatterBase() -> void -MessagePack.Formatters.CollectionFormatterBase.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> TCollection? -MessagePack.Formatters.CollectionFormatterBase.Serialize(ref MessagePack.MessagePackWriter writer, TCollection? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.ComplexFormatter -MessagePack.Formatters.ComplexFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> System.Numerics.Complex -MessagePack.Formatters.ComplexFormatter.Serialize(ref MessagePack.MessagePackWriter writer, System.Numerics.Complex value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.ConcurrentBagFormatter -MessagePack.Formatters.ConcurrentBagFormatter.ConcurrentBagFormatter() -> void -MessagePack.Formatters.ConcurrentDictionaryFormatter -MessagePack.Formatters.ConcurrentDictionaryFormatter.ConcurrentDictionaryFormatter() -> void -MessagePack.Formatters.ConcurrentQueueFormatter -MessagePack.Formatters.ConcurrentQueueFormatter.ConcurrentQueueFormatter() -> void -MessagePack.Formatters.ConcurrentStackFormatter -MessagePack.Formatters.ConcurrentStackFormatter.ConcurrentStackFormatter() -> void -MessagePack.Formatters.DateTimeArrayFormatter -MessagePack.Formatters.DateTimeArrayFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> System.DateTime[]? -MessagePack.Formatters.DateTimeArrayFormatter.Serialize(ref MessagePack.MessagePackWriter writer, System.DateTime[]? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.DateTimeFormatter -MessagePack.Formatters.DateTimeFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> System.DateTime -MessagePack.Formatters.DateTimeFormatter.Serialize(ref MessagePack.MessagePackWriter writer, System.DateTime value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.DateTimeOffsetFormatter -MessagePack.Formatters.DateTimeOffsetFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> System.DateTimeOffset -MessagePack.Formatters.DateTimeOffsetFormatter.Serialize(ref MessagePack.MessagePackWriter writer, System.DateTimeOffset value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.DecimalFormatter -MessagePack.Formatters.DecimalFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> decimal -MessagePack.Formatters.DecimalFormatter.Serialize(ref MessagePack.MessagePackWriter writer, decimal value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.DictionaryFormatter -MessagePack.Formatters.DictionaryFormatter.DictionaryFormatter() -> void -MessagePack.Formatters.DictionaryFormatterBase -MessagePack.Formatters.DictionaryFormatterBase.DictionaryFormatterBase() -> void -MessagePack.Formatters.DictionaryFormatterBase -MessagePack.Formatters.DictionaryFormatterBase.DictionaryFormatterBase() -> void -MessagePack.Formatters.DictionaryFormatterBase -MessagePack.Formatters.DictionaryFormatterBase.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> TDictionary? -MessagePack.Formatters.DictionaryFormatterBase.DictionaryFormatterBase() -> void -MessagePack.Formatters.DictionaryFormatterBase.Serialize(ref MessagePack.MessagePackWriter writer, TDictionary? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.DoubleArrayFormatter -MessagePack.Formatters.DoubleArrayFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> double[]? -MessagePack.Formatters.DoubleArrayFormatter.Serialize(ref MessagePack.MessagePackWriter writer, double[]? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.DoubleFormatter -MessagePack.Formatters.DoubleFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> double -MessagePack.Formatters.DoubleFormatter.Serialize(ref MessagePack.MessagePackWriter writer, double value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.DynamicObjectTypeFallbackFormatter -MessagePack.Formatters.DynamicObjectTypeFallbackFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> object? -MessagePack.Formatters.DynamicObjectTypeFallbackFormatter.Serialize(ref MessagePack.MessagePackWriter writer, object? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.EnumAsStringFormatter -MessagePack.Formatters.EnumAsStringFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> T -MessagePack.Formatters.EnumAsStringFormatter.EnumAsStringFormatter() -> void -MessagePack.Formatters.EnumAsStringFormatter.Serialize(ref MessagePack.MessagePackWriter writer, T value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.ForceByteBlockFormatter -MessagePack.Formatters.ForceByteBlockFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> byte -MessagePack.Formatters.ForceByteBlockFormatter.Serialize(ref MessagePack.MessagePackWriter writer, byte value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.ForceInt16BlockArrayFormatter -MessagePack.Formatters.ForceInt16BlockArrayFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> short[]? -MessagePack.Formatters.ForceInt16BlockArrayFormatter.Serialize(ref MessagePack.MessagePackWriter writer, short[]? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.ForceInt16BlockFormatter -MessagePack.Formatters.ForceInt16BlockFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> short -MessagePack.Formatters.ForceInt16BlockFormatter.Serialize(ref MessagePack.MessagePackWriter writer, short value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.ForceInt32BlockArrayFormatter -MessagePack.Formatters.ForceInt32BlockArrayFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> int[]? -MessagePack.Formatters.ForceInt32BlockArrayFormatter.Serialize(ref MessagePack.MessagePackWriter writer, int[]? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.ForceInt32BlockFormatter -MessagePack.Formatters.ForceInt32BlockFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> int -MessagePack.Formatters.ForceInt32BlockFormatter.Serialize(ref MessagePack.MessagePackWriter writer, int value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.ForceInt64BlockArrayFormatter -MessagePack.Formatters.ForceInt64BlockArrayFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> long[]? -MessagePack.Formatters.ForceInt64BlockArrayFormatter.Serialize(ref MessagePack.MessagePackWriter writer, long[]? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.ForceInt64BlockFormatter -MessagePack.Formatters.ForceInt64BlockFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> long -MessagePack.Formatters.ForceInt64BlockFormatter.Serialize(ref MessagePack.MessagePackWriter writer, long value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.ForceSByteBlockArrayFormatter -MessagePack.Formatters.ForceSByteBlockArrayFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> sbyte[]? -MessagePack.Formatters.ForceSByteBlockArrayFormatter.Serialize(ref MessagePack.MessagePackWriter writer, sbyte[]? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.ForceSByteBlockFormatter -MessagePack.Formatters.ForceSByteBlockFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> sbyte -MessagePack.Formatters.ForceSByteBlockFormatter.Serialize(ref MessagePack.MessagePackWriter writer, sbyte value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.ForceUInt16BlockArrayFormatter -MessagePack.Formatters.ForceUInt16BlockArrayFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> ushort[]? -MessagePack.Formatters.ForceUInt16BlockArrayFormatter.Serialize(ref MessagePack.MessagePackWriter writer, ushort[]? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.ForceUInt16BlockFormatter -MessagePack.Formatters.ForceUInt16BlockFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> ushort -MessagePack.Formatters.ForceUInt16BlockFormatter.Serialize(ref MessagePack.MessagePackWriter writer, ushort value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.ForceUInt32BlockArrayFormatter -MessagePack.Formatters.ForceUInt32BlockArrayFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> uint[]? -MessagePack.Formatters.ForceUInt32BlockArrayFormatter.Serialize(ref MessagePack.MessagePackWriter writer, uint[]? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.ForceUInt32BlockFormatter -MessagePack.Formatters.ForceUInt32BlockFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> uint -MessagePack.Formatters.ForceUInt32BlockFormatter.Serialize(ref MessagePack.MessagePackWriter writer, uint value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.ForceUInt64BlockArrayFormatter -MessagePack.Formatters.ForceUInt64BlockArrayFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> ulong[]? -MessagePack.Formatters.ForceUInt64BlockArrayFormatter.Serialize(ref MessagePack.MessagePackWriter writer, ulong[]? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.ForceUInt64BlockFormatter -MessagePack.Formatters.ForceUInt64BlockFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> ulong -MessagePack.Formatters.ForceUInt64BlockFormatter.Serialize(ref MessagePack.MessagePackWriter writer, ulong value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.FourDimensionalArrayFormatter -MessagePack.Formatters.FourDimensionalArrayFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> T[,,,]? -MessagePack.Formatters.FourDimensionalArrayFormatter.FourDimensionalArrayFormatter() -> void -MessagePack.Formatters.FourDimensionalArrayFormatter.Serialize(ref MessagePack.MessagePackWriter writer, T[,,,]? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.GenericCollectionFormatter -MessagePack.Formatters.GenericCollectionFormatter.GenericCollectionFormatter() -> void -MessagePack.Formatters.GenericDictionaryFormatter -MessagePack.Formatters.GenericDictionaryFormatter.GenericDictionaryFormatter() -> void -MessagePack.Formatters.GenericEnumFormatter -MessagePack.Formatters.GenericEnumFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> T -MessagePack.Formatters.GenericEnumFormatter.GenericEnumFormatter() -> void -MessagePack.Formatters.GenericEnumFormatter.Serialize(ref MessagePack.MessagePackWriter writer, T value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.GuidFormatter -MessagePack.Formatters.GuidFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> System.Guid -MessagePack.Formatters.GuidFormatter.Serialize(ref MessagePack.MessagePackWriter writer, System.Guid value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.HashSetFormatter -MessagePack.Formatters.HashSetFormatter.HashSetFormatter() -> void -MessagePack.Formatters.IMessagePackFormatter -MessagePack.Formatters.IMessagePackFormatter -MessagePack.Formatters.IMessagePackFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> T -MessagePack.Formatters.IMessagePackFormatter.Serialize(ref MessagePack.MessagePackWriter writer, T value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.IgnoreFormatter -MessagePack.Formatters.IgnoreFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> T? -MessagePack.Formatters.IgnoreFormatter.IgnoreFormatter() -> void -MessagePack.Formatters.IgnoreFormatter.Serialize(ref MessagePack.MessagePackWriter writer, T? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.Int16ArrayFormatter -MessagePack.Formatters.Int16ArrayFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> short[]? -MessagePack.Formatters.Int16ArrayFormatter.Serialize(ref MessagePack.MessagePackWriter writer, short[]? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.Int16Formatter -MessagePack.Formatters.Int16Formatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> short -MessagePack.Formatters.Int16Formatter.Serialize(ref MessagePack.MessagePackWriter writer, short value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.Int32ArrayFormatter -MessagePack.Formatters.Int32ArrayFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> int[]? -MessagePack.Formatters.Int32ArrayFormatter.Serialize(ref MessagePack.MessagePackWriter writer, int[]? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.Int32Formatter -MessagePack.Formatters.Int32Formatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> int -MessagePack.Formatters.Int32Formatter.Serialize(ref MessagePack.MessagePackWriter writer, int value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.Int64ArrayFormatter -MessagePack.Formatters.Int64ArrayFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> long[]? -MessagePack.Formatters.Int64ArrayFormatter.Serialize(ref MessagePack.MessagePackWriter writer, long[]? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.Int64Formatter -MessagePack.Formatters.Int64Formatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> long -MessagePack.Formatters.Int64Formatter.Serialize(ref MessagePack.MessagePackWriter writer, long value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.InterfaceCollectionFormatter -MessagePack.Formatters.InterfaceCollectionFormatter.InterfaceCollectionFormatter() -> void -MessagePack.Formatters.InterfaceDictionaryFormatter -MessagePack.Formatters.InterfaceDictionaryFormatter.InterfaceDictionaryFormatter() -> void -MessagePack.Formatters.InterfaceEnumerableFormatter -MessagePack.Formatters.InterfaceEnumerableFormatter.InterfaceEnumerableFormatter() -> void -MessagePack.Formatters.InterfaceGroupingFormatter -MessagePack.Formatters.InterfaceGroupingFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> System.Linq.IGrouping? -MessagePack.Formatters.InterfaceGroupingFormatter.InterfaceGroupingFormatter() -> void -MessagePack.Formatters.InterfaceGroupingFormatter.Serialize(ref MessagePack.MessagePackWriter writer, System.Linq.IGrouping? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.InterfaceListFormatter -MessagePack.Formatters.InterfaceListFormatter.InterfaceListFormatter() -> void -MessagePack.Formatters.InterfaceLookupFormatter -MessagePack.Formatters.InterfaceLookupFormatter.InterfaceLookupFormatter() -> void -MessagePack.Formatters.InterfaceReadOnlyCollectionFormatter -MessagePack.Formatters.InterfaceReadOnlyCollectionFormatter.InterfaceReadOnlyCollectionFormatter() -> void -MessagePack.Formatters.InterfaceReadOnlyDictionaryFormatter -MessagePack.Formatters.InterfaceReadOnlyDictionaryFormatter.InterfaceReadOnlyDictionaryFormatter() -> void -MessagePack.Formatters.InterfaceReadOnlyListFormatter -MessagePack.Formatters.InterfaceReadOnlyListFormatter.InterfaceReadOnlyListFormatter() -> void -MessagePack.Formatters.InterfaceSetFormatter -MessagePack.Formatters.InterfaceSetFormatter.InterfaceSetFormatter() -> void -MessagePack.Formatters.KeyValuePairFormatter -MessagePack.Formatters.KeyValuePairFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> System.Collections.Generic.KeyValuePair -MessagePack.Formatters.KeyValuePairFormatter.KeyValuePairFormatter() -> void -MessagePack.Formatters.KeyValuePairFormatter.Serialize(ref MessagePack.MessagePackWriter writer, System.Collections.Generic.KeyValuePair value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.LazyFormatter -MessagePack.Formatters.LazyFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> System.Lazy? -MessagePack.Formatters.LazyFormatter.LazyFormatter() -> void -MessagePack.Formatters.LazyFormatter.Serialize(ref MessagePack.MessagePackWriter writer, System.Lazy? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.LinkedListFormatter -MessagePack.Formatters.LinkedListFormatter.LinkedListFormatter() -> void -MessagePack.Formatters.ListFormatter -MessagePack.Formatters.ListFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> System.Collections.Generic.List? -MessagePack.Formatters.ListFormatter.ListFormatter() -> void -MessagePack.Formatters.ListFormatter.Serialize(ref MessagePack.MessagePackWriter writer, System.Collections.Generic.List? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.NativeDateTimeArrayFormatter -MessagePack.Formatters.NativeDateTimeArrayFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> System.DateTime[]? -MessagePack.Formatters.NativeDateTimeArrayFormatter.NativeDateTimeArrayFormatter() -> void -MessagePack.Formatters.NativeDateTimeArrayFormatter.Serialize(ref MessagePack.MessagePackWriter writer, System.DateTime[]? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.NativeDateTimeFormatter -MessagePack.Formatters.NativeDateTimeFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> System.DateTime -MessagePack.Formatters.NativeDateTimeFormatter.NativeDateTimeFormatter() -> void -MessagePack.Formatters.NativeDateTimeFormatter.Serialize(ref MessagePack.MessagePackWriter writer, System.DateTime value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.NativeDecimalFormatter -MessagePack.Formatters.NativeDecimalFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> decimal -MessagePack.Formatters.NativeDecimalFormatter.Serialize(ref MessagePack.MessagePackWriter writer, decimal value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.NativeGuidFormatter -MessagePack.Formatters.NativeGuidFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> System.Guid -MessagePack.Formatters.NativeGuidFormatter.Serialize(ref MessagePack.MessagePackWriter writer, System.Guid value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.NilFormatter -MessagePack.Formatters.NilFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> MessagePack.Nil -MessagePack.Formatters.NilFormatter.Serialize(ref MessagePack.MessagePackWriter writer, MessagePack.Nil value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.NonGenericDictionaryFormatter -MessagePack.Formatters.NonGenericDictionaryFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> T? -MessagePack.Formatters.NonGenericDictionaryFormatter.NonGenericDictionaryFormatter() -> void -MessagePack.Formatters.NonGenericDictionaryFormatter.Serialize(ref MessagePack.MessagePackWriter writer, T? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.NonGenericInterfaceDictionaryFormatter -MessagePack.Formatters.NonGenericInterfaceDictionaryFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> System.Collections.IDictionary? -MessagePack.Formatters.NonGenericInterfaceDictionaryFormatter.Serialize(ref MessagePack.MessagePackWriter writer, System.Collections.IDictionary? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.NonGenericInterfaceListFormatter -MessagePack.Formatters.NonGenericInterfaceListFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> System.Collections.IList? -MessagePack.Formatters.NonGenericInterfaceListFormatter.Serialize(ref MessagePack.MessagePackWriter writer, System.Collections.IList? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.NonGenericListFormatter -MessagePack.Formatters.NonGenericListFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> T? -MessagePack.Formatters.NonGenericListFormatter.NonGenericListFormatter() -> void -MessagePack.Formatters.NonGenericListFormatter.Serialize(ref MessagePack.MessagePackWriter writer, T? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.NullableBooleanFormatter -MessagePack.Formatters.NullableBooleanFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> bool? -MessagePack.Formatters.NullableBooleanFormatter.Serialize(ref MessagePack.MessagePackWriter writer, bool? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.NullableByteFormatter -MessagePack.Formatters.NullableByteFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> byte? -MessagePack.Formatters.NullableByteFormatter.Serialize(ref MessagePack.MessagePackWriter writer, byte? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.NullableCharFormatter -MessagePack.Formatters.NullableCharFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> char? -MessagePack.Formatters.NullableCharFormatter.Serialize(ref MessagePack.MessagePackWriter writer, char? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.NullableDateTimeFormatter -MessagePack.Formatters.NullableDateTimeFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> System.DateTime? -MessagePack.Formatters.NullableDateTimeFormatter.Serialize(ref MessagePack.MessagePackWriter writer, System.DateTime? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.NullableDoubleFormatter -MessagePack.Formatters.NullableDoubleFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> double? -MessagePack.Formatters.NullableDoubleFormatter.Serialize(ref MessagePack.MessagePackWriter writer, double? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.NullableForceByteBlockFormatter -MessagePack.Formatters.NullableForceByteBlockFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> byte? -MessagePack.Formatters.NullableForceByteBlockFormatter.Serialize(ref MessagePack.MessagePackWriter writer, byte? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.NullableForceInt16BlockFormatter -MessagePack.Formatters.NullableForceInt16BlockFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> short? -MessagePack.Formatters.NullableForceInt16BlockFormatter.Serialize(ref MessagePack.MessagePackWriter writer, short? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.NullableForceInt32BlockFormatter -MessagePack.Formatters.NullableForceInt32BlockFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> int? -MessagePack.Formatters.NullableForceInt32BlockFormatter.Serialize(ref MessagePack.MessagePackWriter writer, int? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.NullableForceInt64BlockFormatter -MessagePack.Formatters.NullableForceInt64BlockFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> long? -MessagePack.Formatters.NullableForceInt64BlockFormatter.Serialize(ref MessagePack.MessagePackWriter writer, long? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.NullableForceSByteBlockFormatter -MessagePack.Formatters.NullableForceSByteBlockFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> sbyte? -MessagePack.Formatters.NullableForceSByteBlockFormatter.Serialize(ref MessagePack.MessagePackWriter writer, sbyte? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.NullableForceUInt16BlockFormatter -MessagePack.Formatters.NullableForceUInt16BlockFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> ushort? -MessagePack.Formatters.NullableForceUInt16BlockFormatter.Serialize(ref MessagePack.MessagePackWriter writer, ushort? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.NullableForceUInt32BlockFormatter -MessagePack.Formatters.NullableForceUInt32BlockFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> uint? -MessagePack.Formatters.NullableForceUInt32BlockFormatter.Serialize(ref MessagePack.MessagePackWriter writer, uint? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.NullableForceUInt64BlockFormatter -MessagePack.Formatters.NullableForceUInt64BlockFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> ulong? -MessagePack.Formatters.NullableForceUInt64BlockFormatter.Serialize(ref MessagePack.MessagePackWriter writer, ulong? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.NullableFormatter -MessagePack.Formatters.NullableFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> T? -MessagePack.Formatters.NullableFormatter.NullableFormatter() -> void -MessagePack.Formatters.NullableFormatter.Serialize(ref MessagePack.MessagePackWriter writer, T? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.NullableInt16Formatter -MessagePack.Formatters.NullableInt16Formatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> short? -MessagePack.Formatters.NullableInt16Formatter.Serialize(ref MessagePack.MessagePackWriter writer, short? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.NullableInt32Formatter -MessagePack.Formatters.NullableInt32Formatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> int? -MessagePack.Formatters.NullableInt32Formatter.Serialize(ref MessagePack.MessagePackWriter writer, int? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.NullableInt64Formatter -MessagePack.Formatters.NullableInt64Formatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> long? -MessagePack.Formatters.NullableInt64Formatter.Serialize(ref MessagePack.MessagePackWriter writer, long? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.NullableNilFormatter -MessagePack.Formatters.NullableNilFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> MessagePack.Nil? -MessagePack.Formatters.NullableNilFormatter.Serialize(ref MessagePack.MessagePackWriter writer, MessagePack.Nil? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.NullableSByteFormatter -MessagePack.Formatters.NullableSByteFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> sbyte? -MessagePack.Formatters.NullableSByteFormatter.Serialize(ref MessagePack.MessagePackWriter writer, sbyte? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.NullableSingleFormatter -MessagePack.Formatters.NullableSingleFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> float? -MessagePack.Formatters.NullableSingleFormatter.Serialize(ref MessagePack.MessagePackWriter writer, float? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.NullableStringArrayFormatter -MessagePack.Formatters.NullableStringArrayFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> string?[]? -MessagePack.Formatters.NullableStringArrayFormatter.Serialize(ref MessagePack.MessagePackWriter writer, string?[]? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.NullableStringFormatter -MessagePack.Formatters.NullableStringFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> string? -MessagePack.Formatters.NullableStringFormatter.Serialize(ref MessagePack.MessagePackWriter writer, string? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.NullableUInt16Formatter -MessagePack.Formatters.NullableUInt16Formatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> ushort? -MessagePack.Formatters.NullableUInt16Formatter.Serialize(ref MessagePack.MessagePackWriter writer, ushort? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.NullableUInt32Formatter -MessagePack.Formatters.NullableUInt32Formatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> uint? -MessagePack.Formatters.NullableUInt32Formatter.Serialize(ref MessagePack.MessagePackWriter writer, uint? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.NullableUInt64Formatter -MessagePack.Formatters.NullableUInt64Formatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> ulong? -MessagePack.Formatters.NullableUInt64Formatter.Serialize(ref MessagePack.MessagePackWriter writer, ulong? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.ObservableCollectionFormatter -MessagePack.Formatters.ObservableCollectionFormatter.ObservableCollectionFormatter() -> void -MessagePack.Formatters.PrimitiveObjectFormatter -MessagePack.Formatters.PrimitiveObjectFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> object? -MessagePack.Formatters.PrimitiveObjectFormatter.Serialize(ref MessagePack.MessagePackWriter writer, object? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.QueueFormatter -MessagePack.Formatters.QueueFormatter.QueueFormatter() -> void -MessagePack.Formatters.ReadOnlyCollectionFormatter -MessagePack.Formatters.ReadOnlyCollectionFormatter.ReadOnlyCollectionFormatter() -> void -MessagePack.Formatters.ReadOnlyDictionaryFormatter -MessagePack.Formatters.ReadOnlyDictionaryFormatter.ReadOnlyDictionaryFormatter() -> void -MessagePack.Formatters.ReadOnlyObservableCollectionFormatter -MessagePack.Formatters.ReadOnlyObservableCollectionFormatter.ReadOnlyObservableCollectionFormatter() -> void -MessagePack.Formatters.SByteArrayFormatter -MessagePack.Formatters.SByteArrayFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> sbyte[]? -MessagePack.Formatters.SByteArrayFormatter.Serialize(ref MessagePack.MessagePackWriter writer, sbyte[]? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.SByteFormatter -MessagePack.Formatters.SByteFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> sbyte -MessagePack.Formatters.SByteFormatter.Serialize(ref MessagePack.MessagePackWriter writer, sbyte value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.SingleArrayFormatter -MessagePack.Formatters.SingleArrayFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> float[]? -MessagePack.Formatters.SingleArrayFormatter.Serialize(ref MessagePack.MessagePackWriter writer, float[]? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.SingleFormatter -MessagePack.Formatters.SingleFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> float -MessagePack.Formatters.SingleFormatter.Serialize(ref MessagePack.MessagePackWriter writer, float value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.SortedDictionaryFormatter -MessagePack.Formatters.SortedDictionaryFormatter.SortedDictionaryFormatter() -> void -MessagePack.Formatters.SortedListFormatter -MessagePack.Formatters.SortedListFormatter.SortedListFormatter() -> void -MessagePack.Formatters.StackFormatter -MessagePack.Formatters.StackFormatter.StackFormatter() -> void -MessagePack.Formatters.StaticNullableFormatter -MessagePack.Formatters.StaticNullableFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> T? -MessagePack.Formatters.StaticNullableFormatter.Serialize(ref MessagePack.MessagePackWriter writer, T? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.StaticNullableFormatter.StaticNullableFormatter(MessagePack.Formatters.IMessagePackFormatter! underlyingFormatter) -> void -MessagePack.Formatters.StringBuilderFormatter -MessagePack.Formatters.StringBuilderFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> System.Text.StringBuilder? -MessagePack.Formatters.StringBuilderFormatter.Serialize(ref MessagePack.MessagePackWriter writer, System.Text.StringBuilder? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.ThreeDimensionalArrayFormatter -MessagePack.Formatters.ThreeDimensionalArrayFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> T[,,]? -MessagePack.Formatters.ThreeDimensionalArrayFormatter.Serialize(ref MessagePack.MessagePackWriter writer, T[,,]? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.ThreeDimensionalArrayFormatter.ThreeDimensionalArrayFormatter() -> void -MessagePack.Formatters.TimeSpanFormatter -MessagePack.Formatters.TimeSpanFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> System.TimeSpan -MessagePack.Formatters.TimeSpanFormatter.Serialize(ref MessagePack.MessagePackWriter writer, System.TimeSpan value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.TupleFormatter -MessagePack.Formatters.TupleFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> System.Tuple? -MessagePack.Formatters.TupleFormatter.Serialize(ref MessagePack.MessagePackWriter writer, System.Tuple? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.TupleFormatter.TupleFormatter() -> void -MessagePack.Formatters.TupleFormatter -MessagePack.Formatters.TupleFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> System.Tuple? -MessagePack.Formatters.TupleFormatter.Serialize(ref MessagePack.MessagePackWriter writer, System.Tuple? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.TupleFormatter.TupleFormatter() -> void -MessagePack.Formatters.TupleFormatter -MessagePack.Formatters.TupleFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> System.Tuple? -MessagePack.Formatters.TupleFormatter.Serialize(ref MessagePack.MessagePackWriter writer, System.Tuple? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.TupleFormatter.TupleFormatter() -> void -MessagePack.Formatters.TupleFormatter -MessagePack.Formatters.TupleFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> System.Tuple? -MessagePack.Formatters.TupleFormatter.Serialize(ref MessagePack.MessagePackWriter writer, System.Tuple? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.TupleFormatter.TupleFormatter() -> void -MessagePack.Formatters.TupleFormatter -MessagePack.Formatters.TupleFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> System.Tuple? -MessagePack.Formatters.TupleFormatter.Serialize(ref MessagePack.MessagePackWriter writer, System.Tuple? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.TupleFormatter.TupleFormatter() -> void -MessagePack.Formatters.TupleFormatter -MessagePack.Formatters.TupleFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> System.Tuple? -MessagePack.Formatters.TupleFormatter.Serialize(ref MessagePack.MessagePackWriter writer, System.Tuple? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.TupleFormatter.TupleFormatter() -> void -MessagePack.Formatters.TupleFormatter -MessagePack.Formatters.TupleFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> System.Tuple? -MessagePack.Formatters.TupleFormatter.Serialize(ref MessagePack.MessagePackWriter writer, System.Tuple? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.TupleFormatter.TupleFormatter() -> void -MessagePack.Formatters.TupleFormatter -MessagePack.Formatters.TupleFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> System.Tuple? -MessagePack.Formatters.TupleFormatter.Serialize(ref MessagePack.MessagePackWriter writer, System.Tuple? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.TupleFormatter.TupleFormatter() -> void -MessagePack.Formatters.TwoDimensionalArrayFormatter -MessagePack.Formatters.TwoDimensionalArrayFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> T[,]? -MessagePack.Formatters.TwoDimensionalArrayFormatter.Serialize(ref MessagePack.MessagePackWriter writer, T[,]? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.TwoDimensionalArrayFormatter.TwoDimensionalArrayFormatter() -> void -MessagePack.Formatters.TypelessFormatter -MessagePack.Formatters.TypelessFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> object? -MessagePack.Formatters.TypelessFormatter.Serialize(ref MessagePack.MessagePackWriter writer, object? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.UInt16ArrayFormatter -MessagePack.Formatters.UInt16ArrayFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> ushort[]? -MessagePack.Formatters.UInt16ArrayFormatter.Serialize(ref MessagePack.MessagePackWriter writer, ushort[]? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.UInt16Formatter -MessagePack.Formatters.UInt16Formatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> ushort -MessagePack.Formatters.UInt16Formatter.Serialize(ref MessagePack.MessagePackWriter writer, ushort value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.UInt32ArrayFormatter -MessagePack.Formatters.UInt32ArrayFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> uint[]? -MessagePack.Formatters.UInt32ArrayFormatter.Serialize(ref MessagePack.MessagePackWriter writer, uint[]? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.UInt32Formatter -MessagePack.Formatters.UInt32Formatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> uint -MessagePack.Formatters.UInt32Formatter.Serialize(ref MessagePack.MessagePackWriter writer, uint value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.UInt64ArrayFormatter -MessagePack.Formatters.UInt64ArrayFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> ulong[]? -MessagePack.Formatters.UInt64ArrayFormatter.Serialize(ref MessagePack.MessagePackWriter writer, ulong[]? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.UInt64Formatter -MessagePack.Formatters.UInt64Formatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> ulong -MessagePack.Formatters.UInt64Formatter.Serialize(ref MessagePack.MessagePackWriter writer, ulong value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.UriFormatter -MessagePack.Formatters.UriFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> System.Uri? -MessagePack.Formatters.UriFormatter.Serialize(ref MessagePack.MessagePackWriter writer, System.Uri? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.ValueTupleFormatter -MessagePack.Formatters.ValueTupleFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> System.ValueTuple -MessagePack.Formatters.ValueTupleFormatter.Serialize(ref MessagePack.MessagePackWriter writer, System.ValueTuple value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.ValueTupleFormatter.ValueTupleFormatter() -> void -MessagePack.Formatters.ValueTupleFormatter -MessagePack.Formatters.ValueTupleFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> (T1, T2, T3, T4, T5, T6, T7) -MessagePack.Formatters.ValueTupleFormatter.Serialize(ref MessagePack.MessagePackWriter writer, (T1, T2, T3, T4, T5, T6, T7) value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.ValueTupleFormatter.ValueTupleFormatter() -> void -MessagePack.Formatters.ValueTupleFormatter -MessagePack.Formatters.ValueTupleFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> (T1, T2, T3, T4, T5, T6) -MessagePack.Formatters.ValueTupleFormatter.Serialize(ref MessagePack.MessagePackWriter writer, (T1, T2, T3, T4, T5, T6) value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.ValueTupleFormatter.ValueTupleFormatter() -> void -MessagePack.Formatters.ValueTupleFormatter -MessagePack.Formatters.ValueTupleFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> (T1, T2, T3, T4, T5) -MessagePack.Formatters.ValueTupleFormatter.Serialize(ref MessagePack.MessagePackWriter writer, (T1, T2, T3, T4, T5) value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.ValueTupleFormatter.ValueTupleFormatter() -> void -MessagePack.Formatters.ValueTupleFormatter -MessagePack.Formatters.ValueTupleFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> (T1, T2, T3, T4) -MessagePack.Formatters.ValueTupleFormatter.Serialize(ref MessagePack.MessagePackWriter writer, (T1, T2, T3, T4) value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.ValueTupleFormatter.ValueTupleFormatter() -> void -MessagePack.Formatters.ValueTupleFormatter -MessagePack.Formatters.ValueTupleFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> (T1, T2, T3) -MessagePack.Formatters.ValueTupleFormatter.Serialize(ref MessagePack.MessagePackWriter writer, (T1, T2, T3) value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.ValueTupleFormatter.ValueTupleFormatter() -> void -MessagePack.Formatters.ValueTupleFormatter -MessagePack.Formatters.ValueTupleFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> (T1, T2) -MessagePack.Formatters.ValueTupleFormatter.Serialize(ref MessagePack.MessagePackWriter writer, (T1, T2) value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.ValueTupleFormatter.ValueTupleFormatter() -> void -MessagePack.Formatters.ValueTupleFormatter -MessagePack.Formatters.ValueTupleFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> System.ValueTuple -MessagePack.Formatters.ValueTupleFormatter.Serialize(ref MessagePack.MessagePackWriter writer, System.ValueTuple value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.ValueTupleFormatter.ValueTupleFormatter() -> void -MessagePack.Formatters.VersionFormatter -MessagePack.Formatters.VersionFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> System.Version? -MessagePack.Formatters.VersionFormatter.Serialize(ref MessagePack.MessagePackWriter writer, System.Version? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.IFormatterResolver -MessagePack.IFormatterResolver.GetFormatter() -> MessagePack.Formatters.IMessagePackFormatter? -MessagePack.Internal.AutomataDictionary -MessagePack.Internal.AutomataDictionary.Add(string! str, int value) -> void -MessagePack.Internal.AutomataDictionary.AutomataDictionary() -> void -MessagePack.Internal.AutomataDictionary.EmitMatch(System.Reflection.Emit.ILGenerator! il, System.Reflection.Emit.LocalBuilder! bytesSpan, System.Reflection.Emit.LocalBuilder! key, System.Action>! onFound, System.Action! onNotFound) -> void -MessagePack.Internal.AutomataDictionary.GetEnumerator() -> System.Collections.Generic.IEnumerator>! -MessagePack.Internal.AutomataDictionary.TryGetValue(System.ReadOnlySpan bytes, out int value) -> bool -MessagePack.Internal.AutomataDictionary.TryGetValue(in System.Buffers.ReadOnlySequence bytes, out int value) -> bool -MessagePack.Internal.AutomataKeyGen -MessagePack.Internal.ByteArrayStringHashTable -MessagePack.Internal.ByteArrayStringHashTable.Add(byte[]! key, int value) -> void -MessagePack.Internal.ByteArrayStringHashTable.Add(string! key, int value) -> void -MessagePack.Internal.ByteArrayStringHashTable.ByteArrayStringHashTable(int capacity) -> void -MessagePack.Internal.ByteArrayStringHashTable.ByteArrayStringHashTable(int capacity, float loadFactor) -> void -MessagePack.Internal.ByteArrayStringHashTable.GetEnumerator() -> System.Collections.Generic.IEnumerator>! -MessagePack.Internal.ByteArrayStringHashTable.TryGetValue(System.ReadOnlySpan key, out int value) -> bool -MessagePack.Internal.ByteArrayStringHashTable.TryGetValue(in System.Buffers.ReadOnlySequence key, out int value) -> bool -MessagePack.Internal.CodeGenHelpers -MessagePack.Internal.RuntimeTypeHandleEqualityComparer -MessagePack.Internal.RuntimeTypeHandleEqualityComparer.Equals(System.RuntimeTypeHandle x, System.RuntimeTypeHandle y) -> bool -MessagePack.Internal.RuntimeTypeHandleEqualityComparer.GetHashCode(System.RuntimeTypeHandle obj) -> int -MessagePack.Internal.UnsafeMemory -MessagePack.Internal.UnsafeMemory32 -MessagePack.Internal.UnsafeMemory64 -MessagePack.MessagePackCode -MessagePack.MessagePackCompression -MessagePack.MessagePackCompression.Lz4Block = 1 -> MessagePack.MessagePackCompression -MessagePack.MessagePackCompression.Lz4BlockArray = 2 -> MessagePack.MessagePackCompression -MessagePack.MessagePackCompression.None = 0 -> MessagePack.MessagePackCompression -MessagePack.MessagePackRange -MessagePack.MessagePackReader -MessagePack.MessagePackReader.CancellationToken.get -> System.Threading.CancellationToken -MessagePack.MessagePackReader.CancellationToken.set -> void -MessagePack.MessagePackReader.Clone(scoped in System.Buffers.ReadOnlySequence readOnlySequence) -> MessagePack.MessagePackReader -MessagePack.MessagePackReader.Consumed.get -> long -MessagePack.MessagePackReader.CreatePeekReader() -> MessagePack.MessagePackReader -MessagePack.MessagePackReader.End.get -> bool -MessagePack.MessagePackReader.IsNil.get -> bool -MessagePack.MessagePackReader.MessagePackReader(System.ReadOnlyMemory memory) -> void -MessagePack.MessagePackReader.MessagePackReader(scoped in System.Buffers.ReadOnlySequence readOnlySequence) -> void -MessagePack.MessagePackReader.NextCode.get -> byte -MessagePack.MessagePackReader.NextMessagePackType.get -> MessagePack.MessagePackType -MessagePack.MessagePackReader.Position.get -> System.SequencePosition -MessagePack.MessagePackReader.ReadArrayHeader() -> int -MessagePack.MessagePackReader.ReadBoolean() -> bool -MessagePack.MessagePackReader.ReadByte() -> byte -MessagePack.MessagePackReader.ReadBytes() -> System.Buffers.ReadOnlySequence? -MessagePack.MessagePackReader.ReadChar() -> char -MessagePack.MessagePackReader.ReadDateTime() -> System.DateTime -MessagePack.MessagePackReader.ReadDouble() -> double -MessagePack.MessagePackReader.ReadExtensionFormat() -> MessagePack.ExtensionResult -MessagePack.MessagePackReader.ReadExtensionFormatHeader() -> MessagePack.ExtensionHeader -MessagePack.MessagePackReader.ReadInt16() -> short -MessagePack.MessagePackReader.ReadInt32() -> int -MessagePack.MessagePackReader.ReadInt64() -> long -MessagePack.MessagePackReader.ReadMapHeader() -> int -MessagePack.MessagePackReader.ReadNil() -> MessagePack.Nil -MessagePack.MessagePackReader.ReadRaw() -> System.Buffers.ReadOnlySequence -MessagePack.MessagePackReader.ReadRaw(long length) -> System.Buffers.ReadOnlySequence -MessagePack.MessagePackReader.ReadSByte() -> sbyte -MessagePack.MessagePackReader.ReadSingle() -> float -MessagePack.MessagePackReader.ReadString() -> string? -MessagePack.MessagePackReader.ReadStringSequence() -> System.Buffers.ReadOnlySequence? -MessagePack.MessagePackReader.ReadUInt16() -> ushort -MessagePack.MessagePackReader.ReadUInt32() -> uint -MessagePack.MessagePackReader.ReadUInt64() -> ulong -MessagePack.MessagePackReader.Sequence.get -> System.Buffers.ReadOnlySequence -MessagePack.MessagePackReader.Skip() -> void -MessagePack.MessagePackReader.TryReadNil() -> bool -MessagePack.MessagePackReader.TryReadStringSpan(out System.ReadOnlySpan span) -> bool -MessagePack.MessagePackSerializationException -MessagePack.MessagePackSerializationException.MessagePackSerializationException() -> void -MessagePack.MessagePackSerializationException.MessagePackSerializationException(System.Runtime.Serialization.SerializationInfo! info, System.Runtime.Serialization.StreamingContext context) -> void -MessagePack.MessagePackSerializationException.MessagePackSerializationException(string? message) -> void -MessagePack.MessagePackSerializationException.MessagePackSerializationException(string? message, System.Exception? inner) -> void -MessagePack.MessagePackSerializer -MessagePack.MessagePackSerializer.Typeless -MessagePack.MessagePackSerializerOptions -MessagePack.MessagePackSerializerOptions.AllowAssemblyVersionMismatch.get -> bool -MessagePack.MessagePackSerializerOptions.Compression.get -> MessagePack.MessagePackCompression -MessagePack.MessagePackSerializerOptions.MessagePackSerializerOptions(MessagePack.IFormatterResolver! resolver) -> void -MessagePack.MessagePackSerializerOptions.MessagePackSerializerOptions(MessagePack.MessagePackSerializerOptions! copyFrom) -> void -MessagePack.MessagePackSerializerOptions.OldSpec.get -> bool? -MessagePack.MessagePackSerializerOptions.OmitAssemblyVersion.get -> bool -MessagePack.MessagePackSerializerOptions.Resolver.get -> MessagePack.IFormatterResolver! -MessagePack.MessagePackSerializerOptions.WithAllowAssemblyVersionMismatch(bool allowAssemblyVersionMismatch) -> MessagePack.MessagePackSerializerOptions! -MessagePack.MessagePackSerializerOptions.WithCompression(MessagePack.MessagePackCompression compression) -> MessagePack.MessagePackSerializerOptions! -MessagePack.MessagePackSerializerOptions.WithOldSpec(bool? oldSpec = true) -> MessagePack.MessagePackSerializerOptions! -MessagePack.MessagePackSerializerOptions.WithOmitAssemblyVersion(bool omitAssemblyVersion) -> MessagePack.MessagePackSerializerOptions! -MessagePack.MessagePackSerializerOptions.WithResolver(MessagePack.IFormatterResolver! resolver) -> MessagePack.MessagePackSerializerOptions! -MessagePack.MessagePackStreamReader -MessagePack.MessagePackStreamReader.Dispose() -> void -MessagePack.MessagePackStreamReader.MessagePackStreamReader(System.IO.Stream! stream) -> void -MessagePack.MessagePackStreamReader.ReadAsync(System.Threading.CancellationToken cancellationToken) -> System.Threading.Tasks.ValueTask?> -MessagePack.MessagePackStreamReader.RemainingBytes.get -> System.Buffers.ReadOnlySequence -MessagePack.MessagePackType -MessagePack.MessagePackType.Array = 7 -> MessagePack.MessagePackType -MessagePack.MessagePackType.Binary = 6 -> MessagePack.MessagePackType -MessagePack.MessagePackType.Boolean = 3 -> MessagePack.MessagePackType -MessagePack.MessagePackType.Extension = 9 -> MessagePack.MessagePackType -MessagePack.MessagePackType.Float = 4 -> MessagePack.MessagePackType -MessagePack.MessagePackType.Integer = 1 -> MessagePack.MessagePackType -MessagePack.MessagePackType.Map = 8 -> MessagePack.MessagePackType -MessagePack.MessagePackType.Nil = 2 -> MessagePack.MessagePackType -MessagePack.MessagePackType.String = 5 -> MessagePack.MessagePackType -MessagePack.MessagePackType.Unknown = 0 -> MessagePack.MessagePackType -MessagePack.MessagePackWriter -MessagePack.MessagePackWriter.Advance(int length) -> void -MessagePack.MessagePackWriter.CancellationToken.get -> System.Threading.CancellationToken -MessagePack.MessagePackWriter.CancellationToken.set -> void -MessagePack.MessagePackWriter.Clone(System.Buffers.IBufferWriter! writer) -> MessagePack.MessagePackWriter -MessagePack.MessagePackWriter.Flush() -> void -MessagePack.MessagePackWriter.GetSpan(int length) -> System.Span -MessagePack.MessagePackWriter.MessagePackWriter(System.Buffers.IBufferWriter! writer) -> void -MessagePack.MessagePackWriter.OldSpec.get -> bool -MessagePack.MessagePackWriter.OldSpec.set -> void -MessagePack.MessagePackWriter.Write(System.DateTime dateTime) -> void -MessagePack.MessagePackWriter.Write(System.ReadOnlySpan src) -> void -MessagePack.MessagePackWriter.Write(System.ReadOnlySpan value) -> void -MessagePack.MessagePackWriter.Write(bool value) -> void -MessagePack.MessagePackWriter.Write(byte value) -> void -MessagePack.MessagePackWriter.Write(byte[]? src) -> void -MessagePack.MessagePackWriter.Write(char value) -> void -MessagePack.MessagePackWriter.Write(double value) -> void -MessagePack.MessagePackWriter.Write(float value) -> void -MessagePack.MessagePackWriter.Write(in System.Buffers.ReadOnlySequence src) -> void -MessagePack.MessagePackWriter.Write(int value) -> void -MessagePack.MessagePackWriter.Write(long value) -> void -MessagePack.MessagePackWriter.Write(sbyte value) -> void -MessagePack.MessagePackWriter.Write(short value) -> void -MessagePack.MessagePackWriter.Write(string? value) -> void -MessagePack.MessagePackWriter.Write(uint value) -> void -MessagePack.MessagePackWriter.Write(ulong value) -> void -MessagePack.MessagePackWriter.Write(ushort value) -> void -MessagePack.MessagePackWriter.WriteArrayHeader(int count) -> void -MessagePack.MessagePackWriter.WriteArrayHeader(uint count) -> void -MessagePack.MessagePackWriter.WriteExtensionFormat(MessagePack.ExtensionResult extensionData) -> void -MessagePack.MessagePackWriter.WriteExtensionFormatHeader(MessagePack.ExtensionHeader extensionHeader) -> void -MessagePack.MessagePackWriter.WriteInt16(short value) -> void -MessagePack.MessagePackWriter.WriteInt32(int value) -> void -MessagePack.MessagePackWriter.WriteInt64(long value) -> void -MessagePack.MessagePackWriter.WriteInt8(sbyte value) -> void -MessagePack.MessagePackWriter.WriteMapHeader(int count) -> void -MessagePack.MessagePackWriter.WriteMapHeader(uint count) -> void -MessagePack.MessagePackWriter.WriteNil() -> void -MessagePack.MessagePackWriter.WriteRaw(System.ReadOnlySpan rawMessagePackBlock) -> void -MessagePack.MessagePackWriter.WriteRaw(in System.Buffers.ReadOnlySequence rawMessagePackBlock) -> void -MessagePack.MessagePackWriter.WriteString(System.ReadOnlySpan utf8stringBytes) -> void -MessagePack.MessagePackWriter.WriteString(in System.Buffers.ReadOnlySequence utf8stringBytes) -> void -MessagePack.MessagePackWriter.WriteUInt16(ushort value) -> void -MessagePack.MessagePackWriter.WriteUInt32(uint value) -> void -MessagePack.MessagePackWriter.WriteUInt64(ulong value) -> void -MessagePack.MessagePackWriter.WriteUInt8(byte value) -> void -MessagePack.Nil -MessagePack.Nil.Equals(MessagePack.Nil other) -> bool -MessagePack.Nil.Nil() -> void -MessagePack.ReservedMessagePackExtensionTypeCode -MessagePack.Resolvers.AttributeFormatterResolver -MessagePack.Resolvers.AttributeFormatterResolver.GetFormatter() -> MessagePack.Formatters.IMessagePackFormatter? -MessagePack.Resolvers.BuiltinResolver -MessagePack.Resolvers.BuiltinResolver.GetFormatter() -> MessagePack.Formatters.IMessagePackFormatter? -MessagePack.Resolvers.CompositeResolver -MessagePack.Resolvers.ContractlessStandardResolver -MessagePack.Resolvers.ContractlessStandardResolver.GetFormatter() -> MessagePack.Formatters.IMessagePackFormatter? -MessagePack.Resolvers.ContractlessStandardResolverAllowPrivate -MessagePack.Resolvers.ContractlessStandardResolverAllowPrivate.GetFormatter() -> MessagePack.Formatters.IMessagePackFormatter? -MessagePack.Resolvers.DynamicContractlessObjectResolver -MessagePack.Resolvers.DynamicContractlessObjectResolver.GetFormatter() -> MessagePack.Formatters.IMessagePackFormatter? -MessagePack.Resolvers.DynamicContractlessObjectResolverAllowPrivate -MessagePack.Resolvers.DynamicContractlessObjectResolverAllowPrivate.DynamicContractlessObjectResolverAllowPrivate() -> void -MessagePack.Resolvers.DynamicContractlessObjectResolverAllowPrivate.GetFormatter() -> MessagePack.Formatters.IMessagePackFormatter? -MessagePack.Resolvers.DynamicEnumAsStringResolver -MessagePack.Resolvers.DynamicEnumAsStringResolver.GetFormatter() -> MessagePack.Formatters.IMessagePackFormatter? -MessagePack.Resolvers.DynamicEnumResolver -MessagePack.Resolvers.DynamicEnumResolver.GetFormatter() -> MessagePack.Formatters.IMessagePackFormatter? -MessagePack.Resolvers.DynamicGenericResolver -MessagePack.Resolvers.DynamicGenericResolver.GetFormatter() -> MessagePack.Formatters.IMessagePackFormatter? -MessagePack.Resolvers.DynamicObjectResolver -MessagePack.Resolvers.DynamicObjectResolver.GetFormatter() -> MessagePack.Formatters.IMessagePackFormatter? -MessagePack.Resolvers.DynamicObjectResolverAllowPrivate -MessagePack.Resolvers.DynamicObjectResolverAllowPrivate.GetFormatter() -> MessagePack.Formatters.IMessagePackFormatter? -MessagePack.Resolvers.DynamicUnionResolver -MessagePack.Resolvers.DynamicUnionResolver.GetFormatter() -> MessagePack.Formatters.IMessagePackFormatter? -MessagePack.Resolvers.NativeDateTimeResolver -MessagePack.Resolvers.NativeDateTimeResolver.GetFormatter() -> MessagePack.Formatters.IMessagePackFormatter? -MessagePack.Resolvers.NativeDecimalResolver -MessagePack.Resolvers.NativeDecimalResolver.GetFormatter() -> MessagePack.Formatters.IMessagePackFormatter? -MessagePack.Resolvers.NativeGuidResolver -MessagePack.Resolvers.NativeGuidResolver.GetFormatter() -> MessagePack.Formatters.IMessagePackFormatter? -MessagePack.Resolvers.PrimitiveObjectResolver -MessagePack.Resolvers.PrimitiveObjectResolver.GetFormatter() -> MessagePack.Formatters.IMessagePackFormatter? -MessagePack.Resolvers.StandardResolver -MessagePack.Resolvers.StandardResolver.GetFormatter() -> MessagePack.Formatters.IMessagePackFormatter? -MessagePack.Resolvers.StandardResolverAllowPrivate -MessagePack.Resolvers.StandardResolverAllowPrivate.GetFormatter() -> MessagePack.Formatters.IMessagePackFormatter? -MessagePack.Resolvers.StaticCompositeResolver -MessagePack.Resolvers.StaticCompositeResolver.GetFormatter() -> MessagePack.Formatters.IMessagePackFormatter? -MessagePack.Resolvers.StaticCompositeResolver.Register(System.Collections.Generic.IReadOnlyList! formatters, System.Collections.Generic.IReadOnlyList! resolvers) -> void -MessagePack.Resolvers.StaticCompositeResolver.Register(params MessagePack.Formatters.IMessagePackFormatter![]! formatters) -> void -MessagePack.Resolvers.StaticCompositeResolver.Register(params MessagePack.IFormatterResolver![]! resolvers) -> void -MessagePack.Resolvers.TypelessContractlessStandardResolver -MessagePack.Resolvers.TypelessContractlessStandardResolver.GetFormatter() -> MessagePack.Formatters.IMessagePackFormatter? -MessagePack.Resolvers.TypelessContractlessStandardResolver.TypelessContractlessStandardResolver() -> void -MessagePack.Resolvers.TypelessObjectResolver -MessagePack.Resolvers.TypelessObjectResolver.GetFormatter() -> MessagePack.Formatters.IMessagePackFormatter? -MessagePack.TinyJsonException -MessagePack.TinyJsonException.TinyJsonException(string! message) -> void -abstract MessagePack.Formatters.CollectionFormatterBase.Add(TIntermediate collection, int index, TElement value, MessagePack.MessagePackSerializerOptions! options) -> void -abstract MessagePack.Formatters.CollectionFormatterBase.Complete(TIntermediate intermediateCollection) -> TCollection -abstract MessagePack.Formatters.CollectionFormatterBase.Create(int count, MessagePack.MessagePackSerializerOptions! options) -> TIntermediate -abstract MessagePack.Formatters.CollectionFormatterBase.GetSourceEnumerator(TCollection source) -> TEnumerator -abstract MessagePack.Formatters.DictionaryFormatterBase.Add(TIntermediate collection, int index, TKey key, TValue value, MessagePack.MessagePackSerializerOptions! options) -> void -abstract MessagePack.Formatters.DictionaryFormatterBase.Complete(TIntermediate intermediateCollection) -> TDictionary! -abstract MessagePack.Formatters.DictionaryFormatterBase.Create(int count, MessagePack.MessagePackSerializerOptions! options) -> TIntermediate -abstract MessagePack.Formatters.DictionaryFormatterBase.GetSourceEnumerator(TDictionary! source) -> TEnumerator -const MessagePack.MessagePackCode.Array16 = 220 -> byte -const MessagePack.MessagePackCode.Array32 = 221 -> byte -const MessagePack.MessagePackCode.Bin16 = 197 -> byte -const MessagePack.MessagePackCode.Bin32 = 198 -> byte -const MessagePack.MessagePackCode.Bin8 = 196 -> byte -const MessagePack.MessagePackCode.Ext16 = 200 -> byte -const MessagePack.MessagePackCode.Ext32 = 201 -> byte -const MessagePack.MessagePackCode.Ext8 = 199 -> byte -const MessagePack.MessagePackCode.False = 194 -> byte -const MessagePack.MessagePackCode.FixExt1 = 212 -> byte -const MessagePack.MessagePackCode.FixExt16 = 216 -> byte -const MessagePack.MessagePackCode.FixExt2 = 213 -> byte -const MessagePack.MessagePackCode.FixExt4 = 214 -> byte -const MessagePack.MessagePackCode.FixExt8 = 215 -> byte -const MessagePack.MessagePackCode.Float32 = 202 -> byte -const MessagePack.MessagePackCode.Float64 = 203 -> byte -const MessagePack.MessagePackCode.Int16 = 209 -> byte -const MessagePack.MessagePackCode.Int32 = 210 -> byte -const MessagePack.MessagePackCode.Int64 = 211 -> byte -const MessagePack.MessagePackCode.Int8 = 208 -> byte -const MessagePack.MessagePackCode.Map16 = 222 -> byte -const MessagePack.MessagePackCode.Map32 = 223 -> byte -const MessagePack.MessagePackCode.MaxFixArray = 159 -> byte -const MessagePack.MessagePackCode.MaxFixInt = 127 -> byte -const MessagePack.MessagePackCode.MaxFixMap = 143 -> byte -const MessagePack.MessagePackCode.MaxFixStr = 191 -> byte -const MessagePack.MessagePackCode.MaxNegativeFixInt = 255 -> byte -const MessagePack.MessagePackCode.MinFixArray = 144 -> byte -const MessagePack.MessagePackCode.MinFixInt = 0 -> byte -const MessagePack.MessagePackCode.MinFixMap = 128 -> byte -const MessagePack.MessagePackCode.MinFixStr = 160 -> byte -const MessagePack.MessagePackCode.MinNegativeFixInt = 224 -> byte -const MessagePack.MessagePackCode.NeverUsed = 193 -> byte -const MessagePack.MessagePackCode.Nil = 192 -> byte -const MessagePack.MessagePackCode.Str16 = 218 -> byte -const MessagePack.MessagePackCode.Str32 = 219 -> byte -const MessagePack.MessagePackCode.Str8 = 217 -> byte -const MessagePack.MessagePackCode.True = 195 -> byte -const MessagePack.MessagePackCode.UInt16 = 205 -> byte -const MessagePack.MessagePackCode.UInt32 = 206 -> byte -const MessagePack.MessagePackCode.UInt64 = 207 -> byte -const MessagePack.MessagePackCode.UInt8 = 204 -> byte -const MessagePack.MessagePackRange.MaxFixArrayCount = 15 -> int -const MessagePack.MessagePackRange.MaxFixMapCount = 15 -> int -const MessagePack.MessagePackRange.MaxFixNegativeInt = -1 -> int -const MessagePack.MessagePackRange.MaxFixPositiveInt = 127 -> int -const MessagePack.MessagePackRange.MaxFixStringLength = 31 -> int -const MessagePack.MessagePackRange.MinFixNegativeInt = -32 -> int -const MessagePack.MessagePackRange.MinFixStringLength = 0 -> int -const MessagePack.ReservedMessagePackExtensionTypeCode.DateTime = -1 -> sbyte -override MessagePack.Formatters.CollectionFormatterBase.GetSourceEnumerator(TCollection source) -> System.Collections.Generic.IEnumerator! -override MessagePack.Formatters.DictionaryFormatterBase.Complete(TDictionary! intermediateCollection) -> TDictionary! -override MessagePack.Formatters.DictionaryFormatterBase.GetSourceEnumerator(TDictionary! source) -> System.Collections.Generic.IEnumerator>! -override MessagePack.Internal.AutomataDictionary.ToString() -> string! -override MessagePack.Nil.Equals(object? obj) -> bool -override MessagePack.Nil.GetHashCode() -> int -override MessagePack.Nil.ToString() -> string! -override sealed MessagePack.Formatters.CollectionFormatterBase.Complete(TCollection intermediateCollection) -> TCollection -static MessagePack.FormatterResolverExtensions.GetFormatterDynamic(this MessagePack.IFormatterResolver! resolver, System.Type! type) -> object? -static MessagePack.FormatterResolverExtensions.GetFormatterWithVerify(this MessagePack.IFormatterResolver! resolver) -> MessagePack.Formatters.IMessagePackFormatter! -static MessagePack.Formatters.PrimitiveObjectFormatter.IsSupportedType(System.Type! type, System.Reflection.TypeInfo! typeInfo, object! value) -> bool -static MessagePack.Internal.AutomataKeyGen.GetKey(ref System.ReadOnlySpan span) -> ulong -static MessagePack.Internal.CodeGenHelpers.GetArrayFromNullableSequence(in System.Buffers.ReadOnlySequence? sequence) -> byte[]? -static MessagePack.Internal.CodeGenHelpers.GetEncodedStringBytes(string! value) -> byte[]! -static MessagePack.Internal.CodeGenHelpers.GetSpanFromSequence(scoped in System.Buffers.ReadOnlySequence sequence) -> System.ReadOnlySpan -static MessagePack.Internal.CodeGenHelpers.ReadStringSpan(scoped ref MessagePack.MessagePackReader reader) -> System.ReadOnlySpan -static MessagePack.Internal.UnsafeMemory32.WriteRaw1(ref MessagePack.MessagePackWriter writer, System.ReadOnlySpan src) -> void -static MessagePack.Internal.UnsafeMemory32.WriteRaw10(ref MessagePack.MessagePackWriter writer, System.ReadOnlySpan src) -> void -static MessagePack.Internal.UnsafeMemory32.WriteRaw11(ref MessagePack.MessagePackWriter writer, System.ReadOnlySpan src) -> void -static MessagePack.Internal.UnsafeMemory32.WriteRaw12(ref MessagePack.MessagePackWriter writer, System.ReadOnlySpan src) -> void -static MessagePack.Internal.UnsafeMemory32.WriteRaw13(ref MessagePack.MessagePackWriter writer, System.ReadOnlySpan src) -> void -static MessagePack.Internal.UnsafeMemory32.WriteRaw14(ref MessagePack.MessagePackWriter writer, System.ReadOnlySpan src) -> void -static MessagePack.Internal.UnsafeMemory32.WriteRaw15(ref MessagePack.MessagePackWriter writer, System.ReadOnlySpan src) -> void -static MessagePack.Internal.UnsafeMemory32.WriteRaw16(ref MessagePack.MessagePackWriter writer, System.ReadOnlySpan src) -> void -static MessagePack.Internal.UnsafeMemory32.WriteRaw17(ref MessagePack.MessagePackWriter writer, System.ReadOnlySpan src) -> void -static MessagePack.Internal.UnsafeMemory32.WriteRaw18(ref MessagePack.MessagePackWriter writer, System.ReadOnlySpan src) -> void -static MessagePack.Internal.UnsafeMemory32.WriteRaw19(ref MessagePack.MessagePackWriter writer, System.ReadOnlySpan src) -> void -static MessagePack.Internal.UnsafeMemory32.WriteRaw2(ref MessagePack.MessagePackWriter writer, System.ReadOnlySpan src) -> void -static MessagePack.Internal.UnsafeMemory32.WriteRaw20(ref MessagePack.MessagePackWriter writer, System.ReadOnlySpan src) -> void -static MessagePack.Internal.UnsafeMemory32.WriteRaw21(ref MessagePack.MessagePackWriter writer, System.ReadOnlySpan src) -> void -static MessagePack.Internal.UnsafeMemory32.WriteRaw22(ref MessagePack.MessagePackWriter writer, System.ReadOnlySpan src) -> void -static MessagePack.Internal.UnsafeMemory32.WriteRaw23(ref MessagePack.MessagePackWriter writer, System.ReadOnlySpan src) -> void -static MessagePack.Internal.UnsafeMemory32.WriteRaw24(ref MessagePack.MessagePackWriter writer, System.ReadOnlySpan src) -> void -static MessagePack.Internal.UnsafeMemory32.WriteRaw25(ref MessagePack.MessagePackWriter writer, System.ReadOnlySpan src) -> void -static MessagePack.Internal.UnsafeMemory32.WriteRaw26(ref MessagePack.MessagePackWriter writer, System.ReadOnlySpan src) -> void -static MessagePack.Internal.UnsafeMemory32.WriteRaw27(ref MessagePack.MessagePackWriter writer, System.ReadOnlySpan src) -> void -static MessagePack.Internal.UnsafeMemory32.WriteRaw28(ref MessagePack.MessagePackWriter writer, System.ReadOnlySpan src) -> void -static MessagePack.Internal.UnsafeMemory32.WriteRaw29(ref MessagePack.MessagePackWriter writer, System.ReadOnlySpan src) -> void -static MessagePack.Internal.UnsafeMemory32.WriteRaw3(ref MessagePack.MessagePackWriter writer, System.ReadOnlySpan src) -> void -static MessagePack.Internal.UnsafeMemory32.WriteRaw30(ref MessagePack.MessagePackWriter writer, System.ReadOnlySpan src) -> void -static MessagePack.Internal.UnsafeMemory32.WriteRaw31(ref MessagePack.MessagePackWriter writer, System.ReadOnlySpan src) -> void -static MessagePack.Internal.UnsafeMemory32.WriteRaw4(ref MessagePack.MessagePackWriter writer, System.ReadOnlySpan src) -> void -static MessagePack.Internal.UnsafeMemory32.WriteRaw5(ref MessagePack.MessagePackWriter writer, System.ReadOnlySpan src) -> void -static MessagePack.Internal.UnsafeMemory32.WriteRaw6(ref MessagePack.MessagePackWriter writer, System.ReadOnlySpan src) -> void -static MessagePack.Internal.UnsafeMemory32.WriteRaw7(ref MessagePack.MessagePackWriter writer, System.ReadOnlySpan src) -> void -static MessagePack.Internal.UnsafeMemory32.WriteRaw8(ref MessagePack.MessagePackWriter writer, System.ReadOnlySpan src) -> void -static MessagePack.Internal.UnsafeMemory32.WriteRaw9(ref MessagePack.MessagePackWriter writer, System.ReadOnlySpan src) -> void -static MessagePack.Internal.UnsafeMemory64.WriteRaw1(ref MessagePack.MessagePackWriter writer, System.ReadOnlySpan src) -> void -static MessagePack.Internal.UnsafeMemory64.WriteRaw10(ref MessagePack.MessagePackWriter writer, System.ReadOnlySpan src) -> void -static MessagePack.Internal.UnsafeMemory64.WriteRaw11(ref MessagePack.MessagePackWriter writer, System.ReadOnlySpan src) -> void -static MessagePack.Internal.UnsafeMemory64.WriteRaw12(ref MessagePack.MessagePackWriter writer, System.ReadOnlySpan src) -> void -static MessagePack.Internal.UnsafeMemory64.WriteRaw13(ref MessagePack.MessagePackWriter writer, System.ReadOnlySpan src) -> void -static MessagePack.Internal.UnsafeMemory64.WriteRaw14(ref MessagePack.MessagePackWriter writer, System.ReadOnlySpan src) -> void -static MessagePack.Internal.UnsafeMemory64.WriteRaw15(ref MessagePack.MessagePackWriter writer, System.ReadOnlySpan src) -> void -static MessagePack.Internal.UnsafeMemory64.WriteRaw16(ref MessagePack.MessagePackWriter writer, System.ReadOnlySpan src) -> void -static MessagePack.Internal.UnsafeMemory64.WriteRaw17(ref MessagePack.MessagePackWriter writer, System.ReadOnlySpan src) -> void -static MessagePack.Internal.UnsafeMemory64.WriteRaw18(ref MessagePack.MessagePackWriter writer, System.ReadOnlySpan src) -> void -static MessagePack.Internal.UnsafeMemory64.WriteRaw19(ref MessagePack.MessagePackWriter writer, System.ReadOnlySpan src) -> void -static MessagePack.Internal.UnsafeMemory64.WriteRaw2(ref MessagePack.MessagePackWriter writer, System.ReadOnlySpan src) -> void -static MessagePack.Internal.UnsafeMemory64.WriteRaw20(ref MessagePack.MessagePackWriter writer, System.ReadOnlySpan src) -> void -static MessagePack.Internal.UnsafeMemory64.WriteRaw21(ref MessagePack.MessagePackWriter writer, System.ReadOnlySpan src) -> void -static MessagePack.Internal.UnsafeMemory64.WriteRaw22(ref MessagePack.MessagePackWriter writer, System.ReadOnlySpan src) -> void -static MessagePack.Internal.UnsafeMemory64.WriteRaw23(ref MessagePack.MessagePackWriter writer, System.ReadOnlySpan src) -> void -static MessagePack.Internal.UnsafeMemory64.WriteRaw24(ref MessagePack.MessagePackWriter writer, System.ReadOnlySpan src) -> void -static MessagePack.Internal.UnsafeMemory64.WriteRaw25(ref MessagePack.MessagePackWriter writer, System.ReadOnlySpan src) -> void -static MessagePack.Internal.UnsafeMemory64.WriteRaw26(ref MessagePack.MessagePackWriter writer, System.ReadOnlySpan src) -> void -static MessagePack.Internal.UnsafeMemory64.WriteRaw27(ref MessagePack.MessagePackWriter writer, System.ReadOnlySpan src) -> void -static MessagePack.Internal.UnsafeMemory64.WriteRaw28(ref MessagePack.MessagePackWriter writer, System.ReadOnlySpan src) -> void -static MessagePack.Internal.UnsafeMemory64.WriteRaw29(ref MessagePack.MessagePackWriter writer, System.ReadOnlySpan src) -> void -static MessagePack.Internal.UnsafeMemory64.WriteRaw3(ref MessagePack.MessagePackWriter writer, System.ReadOnlySpan src) -> void -static MessagePack.Internal.UnsafeMemory64.WriteRaw30(ref MessagePack.MessagePackWriter writer, System.ReadOnlySpan src) -> void -static MessagePack.Internal.UnsafeMemory64.WriteRaw31(ref MessagePack.MessagePackWriter writer, System.ReadOnlySpan src) -> void -static MessagePack.Internal.UnsafeMemory64.WriteRaw4(ref MessagePack.MessagePackWriter writer, System.ReadOnlySpan src) -> void -static MessagePack.Internal.UnsafeMemory64.WriteRaw5(ref MessagePack.MessagePackWriter writer, System.ReadOnlySpan src) -> void -static MessagePack.Internal.UnsafeMemory64.WriteRaw6(ref MessagePack.MessagePackWriter writer, System.ReadOnlySpan src) -> void -static MessagePack.Internal.UnsafeMemory64.WriteRaw7(ref MessagePack.MessagePackWriter writer, System.ReadOnlySpan src) -> void -static MessagePack.Internal.UnsafeMemory64.WriteRaw8(ref MessagePack.MessagePackWriter writer, System.ReadOnlySpan src) -> void -static MessagePack.Internal.UnsafeMemory64.WriteRaw9(ref MessagePack.MessagePackWriter writer, System.ReadOnlySpan src) -> void -static MessagePack.MessagePackCode.ToFormatName(byte code) -> string! -static MessagePack.MessagePackCode.ToMessagePackType(byte code) -> MessagePack.MessagePackType -static MessagePack.MessagePackSerializer.ConvertFromJson(System.IO.TextReader! reader, ref MessagePack.MessagePackWriter writer, MessagePack.MessagePackSerializerOptions? options = null) -> void -static MessagePack.MessagePackSerializer.ConvertFromJson(string! str, MessagePack.MessagePackSerializerOptions? options = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) -> byte[]! -static MessagePack.MessagePackSerializer.ConvertFromJson(string! str, ref MessagePack.MessagePackWriter writer, MessagePack.MessagePackSerializerOptions? options = null) -> void -static MessagePack.MessagePackSerializer.ConvertToJson(System.ReadOnlyMemory bytes, MessagePack.MessagePackSerializerOptions? options = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) -> string! -static MessagePack.MessagePackSerializer.ConvertToJson(in System.Buffers.ReadOnlySequence bytes, MessagePack.MessagePackSerializerOptions? options = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) -> string! -static MessagePack.MessagePackSerializer.ConvertToJson(ref MessagePack.MessagePackReader reader, System.IO.TextWriter! jsonWriter, MessagePack.MessagePackSerializerOptions? options = null) -> void -static MessagePack.MessagePackSerializer.DefaultOptions.get -> MessagePack.MessagePackSerializerOptions! -static MessagePack.MessagePackSerializer.DefaultOptions.set -> void -static MessagePack.MessagePackSerializer.Deserialize(System.Type! type, System.Buffers.ReadOnlySequence bytes, MessagePack.MessagePackSerializerOptions? options = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) -> object? -static MessagePack.MessagePackSerializer.Deserialize(System.Type! type, System.IO.Stream! stream, MessagePack.MessagePackSerializerOptions? options = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) -> object? -static MessagePack.MessagePackSerializer.Deserialize(System.Type! type, System.ReadOnlyMemory bytes, MessagePack.MessagePackSerializerOptions? options = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) -> object? -static MessagePack.MessagePackSerializer.Deserialize(System.Type! type, ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions? options = null) -> object? -static MessagePack.MessagePackSerializer.Deserialize(System.IO.Stream! stream, MessagePack.MessagePackSerializerOptions? options = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) -> T -static MessagePack.MessagePackSerializer.Deserialize(System.ReadOnlyMemory buffer, MessagePack.MessagePackSerializerOptions? options = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) -> T -static MessagePack.MessagePackSerializer.Deserialize(System.ReadOnlyMemory buffer, MessagePack.MessagePackSerializerOptions? options, out int bytesRead, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) -> T -static MessagePack.MessagePackSerializer.Deserialize(System.ReadOnlyMemory buffer, out int bytesRead, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) -> T -static MessagePack.MessagePackSerializer.Deserialize(in System.Buffers.ReadOnlySequence byteSequence, MessagePack.MessagePackSerializerOptions? options = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) -> T -static MessagePack.MessagePackSerializer.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions? options = null) -> T -static MessagePack.MessagePackSerializer.DeserializeAsync(System.Type! type, System.IO.Stream! stream, MessagePack.MessagePackSerializerOptions? options = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) -> System.Threading.Tasks.ValueTask -static MessagePack.MessagePackSerializer.DeserializeAsync(System.IO.Stream! stream, MessagePack.MessagePackSerializerOptions? options = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) -> System.Threading.Tasks.ValueTask -static MessagePack.MessagePackSerializer.Serialize(System.Type! type, System.Buffers.IBufferWriter! writer, object? obj, MessagePack.MessagePackSerializerOptions? options = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) -> void -static MessagePack.MessagePackSerializer.Serialize(System.Type! type, System.IO.Stream! stream, object? obj, MessagePack.MessagePackSerializerOptions? options = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) -> void -static MessagePack.MessagePackSerializer.Serialize(System.Type! type, object? obj, MessagePack.MessagePackSerializerOptions? options = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) -> byte[]! -static MessagePack.MessagePackSerializer.Serialize(System.Type! type, ref MessagePack.MessagePackWriter writer, object? obj, MessagePack.MessagePackSerializerOptions? options = null) -> void -static MessagePack.MessagePackSerializer.Serialize(System.Buffers.IBufferWriter! writer, T value, MessagePack.MessagePackSerializerOptions? options = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) -> void -static MessagePack.MessagePackSerializer.Serialize(System.IO.Stream! stream, T value, MessagePack.MessagePackSerializerOptions? options = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) -> void -static MessagePack.MessagePackSerializer.Serialize(T value, MessagePack.MessagePackSerializerOptions? options = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) -> byte[]! -static MessagePack.MessagePackSerializer.Serialize(ref MessagePack.MessagePackWriter writer, T value, MessagePack.MessagePackSerializerOptions? options = null) -> void -static MessagePack.MessagePackSerializer.SerializeAsync(System.Type! type, System.IO.Stream! stream, object? obj, MessagePack.MessagePackSerializerOptions? options = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) -> System.Threading.Tasks.Task! -static MessagePack.MessagePackSerializer.SerializeAsync(System.IO.Stream! stream, T value, MessagePack.MessagePackSerializerOptions? options = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) -> System.Threading.Tasks.Task! -static MessagePack.MessagePackSerializer.SerializeToJson(System.IO.TextWriter! textWriter, T obj, MessagePack.MessagePackSerializerOptions? options = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) -> void -static MessagePack.MessagePackSerializer.SerializeToJson(T obj, MessagePack.MessagePackSerializerOptions? options = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) -> string! -static MessagePack.MessagePackSerializer.Typeless.DefaultOptions.get -> MessagePack.MessagePackSerializerOptions! -static MessagePack.MessagePackSerializer.Typeless.DefaultOptions.set -> void -static MessagePack.MessagePackSerializer.Typeless.Deserialize(System.IO.Stream! stream, MessagePack.MessagePackSerializerOptions? options = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) -> object? -static MessagePack.MessagePackSerializer.Typeless.Deserialize(System.Memory bytes, MessagePack.MessagePackSerializerOptions? options = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) -> object? -static MessagePack.MessagePackSerializer.Typeless.Deserialize(in System.Buffers.ReadOnlySequence byteSequence, MessagePack.MessagePackSerializerOptions? options = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) -> object? -static MessagePack.MessagePackSerializer.Typeless.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions? options = null) -> object? -static MessagePack.MessagePackSerializer.Typeless.DeserializeAsync(System.IO.Stream! stream, MessagePack.MessagePackSerializerOptions? options = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) -> System.Threading.Tasks.ValueTask -static MessagePack.MessagePackSerializer.Typeless.Serialize(System.Buffers.IBufferWriter! writer, object? obj, MessagePack.MessagePackSerializerOptions? options = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) -> void -static MessagePack.MessagePackSerializer.Typeless.Serialize(System.IO.Stream! stream, object? obj, MessagePack.MessagePackSerializerOptions? options = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) -> void -static MessagePack.MessagePackSerializer.Typeless.Serialize(object? obj, MessagePack.MessagePackSerializerOptions? options = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) -> byte[]! -static MessagePack.MessagePackSerializer.Typeless.Serialize(ref MessagePack.MessagePackWriter writer, object? obj, MessagePack.MessagePackSerializerOptions? options = null) -> void -static MessagePack.MessagePackSerializer.Typeless.SerializeAsync(System.IO.Stream! stream, object? obj, MessagePack.MessagePackSerializerOptions? options = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) -> System.Threading.Tasks.Task! -static MessagePack.MessagePackSerializerOptions.Standard.get -> MessagePack.MessagePackSerializerOptions! -static MessagePack.Resolvers.CompositeResolver.Create(System.Collections.Generic.IReadOnlyList! formatters, System.Collections.Generic.IReadOnlyList! resolvers) -> MessagePack.IFormatterResolver! -static MessagePack.Resolvers.CompositeResolver.Create(params MessagePack.Formatters.IMessagePackFormatter![]! formatters) -> MessagePack.IFormatterResolver! -static MessagePack.Resolvers.CompositeResolver.Create(params MessagePack.IFormatterResolver![]! resolvers) -> MessagePack.IFormatterResolver! -static readonly MessagePack.Formatters.BigIntegerFormatter.Instance -> MessagePack.Formatters.IMessagePackFormatter! -static readonly MessagePack.Formatters.BitArrayFormatter.Instance -> MessagePack.Formatters.IMessagePackFormatter! -static readonly MessagePack.Formatters.BooleanArrayFormatter.Instance -> MessagePack.Formatters.BooleanArrayFormatter! -static readonly MessagePack.Formatters.BooleanFormatter.Instance -> MessagePack.Formatters.BooleanFormatter! -static readonly MessagePack.Formatters.ByteArrayFormatter.Instance -> MessagePack.Formatters.ByteArrayFormatter! -static readonly MessagePack.Formatters.ByteArraySegmentFormatter.Instance -> MessagePack.Formatters.ByteArraySegmentFormatter! -static readonly MessagePack.Formatters.ByteFormatter.Instance -> MessagePack.Formatters.ByteFormatter! -static readonly MessagePack.Formatters.CharArrayFormatter.Instance -> MessagePack.Formatters.CharArrayFormatter! -static readonly MessagePack.Formatters.CharFormatter.Instance -> MessagePack.Formatters.CharFormatter! -static readonly MessagePack.Formatters.ComplexFormatter.Instance -> MessagePack.Formatters.IMessagePackFormatter! -static readonly MessagePack.Formatters.DateTimeArrayFormatter.Instance -> MessagePack.Formatters.DateTimeArrayFormatter! -static readonly MessagePack.Formatters.DateTimeFormatter.Instance -> MessagePack.Formatters.DateTimeFormatter! -static readonly MessagePack.Formatters.DateTimeOffsetFormatter.Instance -> MessagePack.Formatters.IMessagePackFormatter! -static readonly MessagePack.Formatters.DecimalFormatter.Instance -> MessagePack.Formatters.DecimalFormatter! -static readonly MessagePack.Formatters.DoubleArrayFormatter.Instance -> MessagePack.Formatters.DoubleArrayFormatter! -static readonly MessagePack.Formatters.DoubleFormatter.Instance -> MessagePack.Formatters.DoubleFormatter! -static readonly MessagePack.Formatters.DynamicObjectTypeFallbackFormatter.Instance -> MessagePack.Formatters.IMessagePackFormatter! -static readonly MessagePack.Formatters.ForceByteBlockFormatter.Instance -> MessagePack.Formatters.ForceByteBlockFormatter! -static readonly MessagePack.Formatters.ForceInt16BlockArrayFormatter.Instance -> MessagePack.Formatters.ForceInt16BlockArrayFormatter! -static readonly MessagePack.Formatters.ForceInt16BlockFormatter.Instance -> MessagePack.Formatters.ForceInt16BlockFormatter! -static readonly MessagePack.Formatters.ForceInt32BlockArrayFormatter.Instance -> MessagePack.Formatters.ForceInt32BlockArrayFormatter! -static readonly MessagePack.Formatters.ForceInt32BlockFormatter.Instance -> MessagePack.Formatters.ForceInt32BlockFormatter! -static readonly MessagePack.Formatters.ForceInt64BlockArrayFormatter.Instance -> MessagePack.Formatters.ForceInt64BlockArrayFormatter! -static readonly MessagePack.Formatters.ForceInt64BlockFormatter.Instance -> MessagePack.Formatters.ForceInt64BlockFormatter! -static readonly MessagePack.Formatters.ForceSByteBlockArrayFormatter.Instance -> MessagePack.Formatters.ForceSByteBlockArrayFormatter! -static readonly MessagePack.Formatters.ForceSByteBlockFormatter.Instance -> MessagePack.Formatters.ForceSByteBlockFormatter! -static readonly MessagePack.Formatters.ForceUInt16BlockArrayFormatter.Instance -> MessagePack.Formatters.ForceUInt16BlockArrayFormatter! -static readonly MessagePack.Formatters.ForceUInt16BlockFormatter.Instance -> MessagePack.Formatters.ForceUInt16BlockFormatter! -static readonly MessagePack.Formatters.ForceUInt32BlockArrayFormatter.Instance -> MessagePack.Formatters.ForceUInt32BlockArrayFormatter! -static readonly MessagePack.Formatters.ForceUInt32BlockFormatter.Instance -> MessagePack.Formatters.ForceUInt32BlockFormatter! -static readonly MessagePack.Formatters.ForceUInt64BlockArrayFormatter.Instance -> MessagePack.Formatters.ForceUInt64BlockArrayFormatter! -static readonly MessagePack.Formatters.ForceUInt64BlockFormatter.Instance -> MessagePack.Formatters.ForceUInt64BlockFormatter! -static readonly MessagePack.Formatters.GuidFormatter.Instance -> MessagePack.Formatters.IMessagePackFormatter! -static readonly MessagePack.Formatters.Int16ArrayFormatter.Instance -> MessagePack.Formatters.Int16ArrayFormatter! -static readonly MessagePack.Formatters.Int16Formatter.Instance -> MessagePack.Formatters.Int16Formatter! -static readonly MessagePack.Formatters.Int32ArrayFormatter.Instance -> MessagePack.Formatters.Int32ArrayFormatter! -static readonly MessagePack.Formatters.Int32Formatter.Instance -> MessagePack.Formatters.Int32Formatter! -static readonly MessagePack.Formatters.Int64ArrayFormatter.Instance -> MessagePack.Formatters.Int64ArrayFormatter! -static readonly MessagePack.Formatters.Int64Formatter.Instance -> MessagePack.Formatters.Int64Formatter! -static readonly MessagePack.Formatters.NativeDateTimeArrayFormatter.Instance -> MessagePack.Formatters.NativeDateTimeArrayFormatter! -static readonly MessagePack.Formatters.NativeDateTimeFormatter.Instance -> MessagePack.Formatters.NativeDateTimeFormatter! -static readonly MessagePack.Formatters.NativeDecimalFormatter.Instance -> MessagePack.Formatters.IMessagePackFormatter! -static readonly MessagePack.Formatters.NativeGuidFormatter.Instance -> MessagePack.Formatters.IMessagePackFormatter! -static readonly MessagePack.Formatters.NilFormatter.Instance -> MessagePack.Formatters.IMessagePackFormatter! -static readonly MessagePack.Formatters.NonGenericInterfaceDictionaryFormatter.Instance -> MessagePack.Formatters.IMessagePackFormatter! -static readonly MessagePack.Formatters.NonGenericInterfaceListFormatter.Instance -> MessagePack.Formatters.IMessagePackFormatter! -static readonly MessagePack.Formatters.NullableBooleanFormatter.Instance -> MessagePack.Formatters.NullableBooleanFormatter! -static readonly MessagePack.Formatters.NullableByteFormatter.Instance -> MessagePack.Formatters.NullableByteFormatter! -static readonly MessagePack.Formatters.NullableCharFormatter.Instance -> MessagePack.Formatters.NullableCharFormatter! -static readonly MessagePack.Formatters.NullableDateTimeFormatter.Instance -> MessagePack.Formatters.NullableDateTimeFormatter! -static readonly MessagePack.Formatters.NullableDoubleFormatter.Instance -> MessagePack.Formatters.NullableDoubleFormatter! -static readonly MessagePack.Formatters.NullableForceByteBlockFormatter.Instance -> MessagePack.Formatters.NullableForceByteBlockFormatter! -static readonly MessagePack.Formatters.NullableForceInt16BlockFormatter.Instance -> MessagePack.Formatters.NullableForceInt16BlockFormatter! -static readonly MessagePack.Formatters.NullableForceInt32BlockFormatter.Instance -> MessagePack.Formatters.NullableForceInt32BlockFormatter! -static readonly MessagePack.Formatters.NullableForceInt64BlockFormatter.Instance -> MessagePack.Formatters.NullableForceInt64BlockFormatter! -static readonly MessagePack.Formatters.NullableForceSByteBlockFormatter.Instance -> MessagePack.Formatters.NullableForceSByteBlockFormatter! -static readonly MessagePack.Formatters.NullableForceUInt16BlockFormatter.Instance -> MessagePack.Formatters.NullableForceUInt16BlockFormatter! -static readonly MessagePack.Formatters.NullableForceUInt32BlockFormatter.Instance -> MessagePack.Formatters.NullableForceUInt32BlockFormatter! -static readonly MessagePack.Formatters.NullableForceUInt64BlockFormatter.Instance -> MessagePack.Formatters.NullableForceUInt64BlockFormatter! -static readonly MessagePack.Formatters.NullableInt16Formatter.Instance -> MessagePack.Formatters.NullableInt16Formatter! -static readonly MessagePack.Formatters.NullableInt32Formatter.Instance -> MessagePack.Formatters.NullableInt32Formatter! -static readonly MessagePack.Formatters.NullableInt64Formatter.Instance -> MessagePack.Formatters.NullableInt64Formatter! -static readonly MessagePack.Formatters.NullableNilFormatter.Instance -> MessagePack.Formatters.IMessagePackFormatter! -static readonly MessagePack.Formatters.NullableSByteFormatter.Instance -> MessagePack.Formatters.NullableSByteFormatter! -static readonly MessagePack.Formatters.NullableSingleFormatter.Instance -> MessagePack.Formatters.NullableSingleFormatter! -static readonly MessagePack.Formatters.NullableStringArrayFormatter.Instance -> MessagePack.Formatters.NullableStringArrayFormatter! -static readonly MessagePack.Formatters.NullableStringFormatter.Instance -> MessagePack.Formatters.NullableStringFormatter! -static readonly MessagePack.Formatters.NullableUInt16Formatter.Instance -> MessagePack.Formatters.NullableUInt16Formatter! -static readonly MessagePack.Formatters.NullableUInt32Formatter.Instance -> MessagePack.Formatters.NullableUInt32Formatter! -static readonly MessagePack.Formatters.NullableUInt64Formatter.Instance -> MessagePack.Formatters.NullableUInt64Formatter! -static readonly MessagePack.Formatters.PrimitiveObjectFormatter.Instance -> MessagePack.Formatters.IMessagePackFormatter! -static readonly MessagePack.Formatters.SByteArrayFormatter.Instance -> MessagePack.Formatters.SByteArrayFormatter! -static readonly MessagePack.Formatters.SByteFormatter.Instance -> MessagePack.Formatters.SByteFormatter! -static readonly MessagePack.Formatters.SingleArrayFormatter.Instance -> MessagePack.Formatters.SingleArrayFormatter! -static readonly MessagePack.Formatters.SingleFormatter.Instance -> MessagePack.Formatters.SingleFormatter! -static readonly MessagePack.Formatters.StringBuilderFormatter.Instance -> MessagePack.Formatters.IMessagePackFormatter! -static readonly MessagePack.Formatters.TimeSpanFormatter.Instance -> MessagePack.Formatters.IMessagePackFormatter! -static readonly MessagePack.Formatters.TypelessFormatter.Instance -> MessagePack.Formatters.IMessagePackFormatter! -static readonly MessagePack.Formatters.UInt16ArrayFormatter.Instance -> MessagePack.Formatters.UInt16ArrayFormatter! -static readonly MessagePack.Formatters.UInt16Formatter.Instance -> MessagePack.Formatters.UInt16Formatter! -static readonly MessagePack.Formatters.UInt32ArrayFormatter.Instance -> MessagePack.Formatters.UInt32ArrayFormatter! -static readonly MessagePack.Formatters.UInt32Formatter.Instance -> MessagePack.Formatters.UInt32Formatter! -static readonly MessagePack.Formatters.UInt64ArrayFormatter.Instance -> MessagePack.Formatters.UInt64ArrayFormatter! -static readonly MessagePack.Formatters.UInt64Formatter.Instance -> MessagePack.Formatters.UInt64Formatter! -static readonly MessagePack.Formatters.UriFormatter.Instance -> MessagePack.Formatters.IMessagePackFormatter! -static readonly MessagePack.Formatters.VersionFormatter.Instance -> MessagePack.Formatters.IMessagePackFormatter! -static readonly MessagePack.Internal.AutomataKeyGen.GetKeyMethod -> System.Reflection.MethodInfo! -static readonly MessagePack.Internal.RuntimeTypeHandleEqualityComparer.Default -> System.Collections.Generic.IEqualityComparer! -static readonly MessagePack.Internal.UnsafeMemory.Is32Bit -> bool -static readonly MessagePack.Nil.Default -> MessagePack.Nil -static readonly MessagePack.Resolvers.AttributeFormatterResolver.Instance -> MessagePack.Resolvers.AttributeFormatterResolver! -static readonly MessagePack.Resolvers.BuiltinResolver.Instance -> MessagePack.Resolvers.BuiltinResolver! -static readonly MessagePack.Resolvers.ContractlessStandardResolver.Instance -> MessagePack.Resolvers.ContractlessStandardResolver! -static readonly MessagePack.Resolvers.ContractlessStandardResolver.Options -> MessagePack.MessagePackSerializerOptions! -static readonly MessagePack.Resolvers.ContractlessStandardResolverAllowPrivate.Instance -> MessagePack.Resolvers.ContractlessStandardResolverAllowPrivate! -static readonly MessagePack.Resolvers.ContractlessStandardResolverAllowPrivate.Options -> MessagePack.MessagePackSerializerOptions! -static readonly MessagePack.Resolvers.DynamicContractlessObjectResolver.Instance -> MessagePack.Resolvers.DynamicContractlessObjectResolver! -static readonly MessagePack.Resolvers.DynamicContractlessObjectResolverAllowPrivate.Instance -> MessagePack.Resolvers.DynamicContractlessObjectResolverAllowPrivate! -static readonly MessagePack.Resolvers.DynamicEnumAsStringResolver.Instance -> MessagePack.Resolvers.DynamicEnumAsStringResolver! -static readonly MessagePack.Resolvers.DynamicEnumAsStringResolver.Options -> MessagePack.MessagePackSerializerOptions! -static readonly MessagePack.Resolvers.DynamicEnumResolver.Instance -> MessagePack.Resolvers.DynamicEnumResolver! -static readonly MessagePack.Resolvers.DynamicGenericResolver.Instance -> MessagePack.Resolvers.DynamicGenericResolver! -static readonly MessagePack.Resolvers.DynamicObjectResolver.Instance -> MessagePack.Resolvers.DynamicObjectResolver! -static readonly MessagePack.Resolvers.DynamicObjectResolver.Options -> MessagePack.MessagePackSerializerOptions! -static readonly MessagePack.Resolvers.DynamicObjectResolverAllowPrivate.Instance -> MessagePack.Resolvers.DynamicObjectResolverAllowPrivate! -static readonly MessagePack.Resolvers.DynamicUnionResolver.Instance -> MessagePack.Resolvers.DynamicUnionResolver! -static readonly MessagePack.Resolvers.DynamicUnionResolver.Options -> MessagePack.MessagePackSerializerOptions! -static readonly MessagePack.Resolvers.NativeDateTimeResolver.Instance -> MessagePack.Resolvers.NativeDateTimeResolver! -static readonly MessagePack.Resolvers.NativeDateTimeResolver.Options -> MessagePack.MessagePackSerializerOptions! -static readonly MessagePack.Resolvers.NativeDecimalResolver.Instance -> MessagePack.Resolvers.NativeDecimalResolver! -static readonly MessagePack.Resolvers.NativeGuidResolver.Instance -> MessagePack.Resolvers.NativeGuidResolver! -static readonly MessagePack.Resolvers.PrimitiveObjectResolver.Instance -> MessagePack.Resolvers.PrimitiveObjectResolver! -static readonly MessagePack.Resolvers.PrimitiveObjectResolver.Options -> MessagePack.MessagePackSerializerOptions! -static readonly MessagePack.Resolvers.StandardResolver.Instance -> MessagePack.Resolvers.StandardResolver! -static readonly MessagePack.Resolvers.StandardResolver.Options -> MessagePack.MessagePackSerializerOptions! -static readonly MessagePack.Resolvers.StandardResolverAllowPrivate.Instance -> MessagePack.Resolvers.StandardResolverAllowPrivate! -static readonly MessagePack.Resolvers.StandardResolverAllowPrivate.Options -> MessagePack.MessagePackSerializerOptions! -static readonly MessagePack.Resolvers.StaticCompositeResolver.Instance -> MessagePack.Resolvers.StaticCompositeResolver! -static readonly MessagePack.Resolvers.TypelessContractlessStandardResolver.Instance -> MessagePack.Resolvers.TypelessContractlessStandardResolver! -static readonly MessagePack.Resolvers.TypelessContractlessStandardResolver.Options -> MessagePack.MessagePackSerializerOptions! -static readonly MessagePack.Resolvers.TypelessObjectResolver.Instance -> MessagePack.IFormatterResolver! -virtual MessagePack.Formatters.CollectionFormatterBase.GetCount(TCollection sequence) -> int? -virtual MessagePack.MessagePackSerializerOptions.Clone() -> MessagePack.MessagePackSerializerOptions! -virtual MessagePack.MessagePackSerializerOptions.LoadType(string! typeName) -> System.Type? -virtual MessagePack.MessagePackSerializerOptions.ThrowIfDeserializingTypeIsDisallowed(System.Type! type) -> void -MessagePack.ExtensionHeader.Equals(MessagePack.ExtensionHeader other) -> bool -MessagePack.Formatters.InterfaceCollectionFormatter2 -MessagePack.Formatters.InterfaceCollectionFormatter2.InterfaceCollectionFormatter2() -> void -MessagePack.Formatters.InterfaceListFormatter2 -MessagePack.Formatters.InterfaceListFormatter2.InterfaceListFormatter2() -> void -MessagePack.MessagePackReader.Depth.get -> int -MessagePack.MessagePackReader.Depth.set -> void -MessagePack.MessagePackReader.ReadDateTime(MessagePack.ExtensionHeader header) -> System.DateTime -MessagePack.MessagePackReader.TryReadArrayHeader(out int count) -> bool -MessagePack.MessagePackReader.TryReadExtensionFormatHeader(out MessagePack.ExtensionHeader extensionHeader) -> bool -MessagePack.MessagePackReader.TryReadMapHeader(out int count) -> bool -MessagePack.MessagePackSecurity -MessagePack.MessagePackSecurity.DepthStep(ref MessagePack.MessagePackReader reader) -> void -MessagePack.MessagePackSecurity.GetEqualityComparer() -> System.Collections.IEqualityComparer! -MessagePack.MessagePackSecurity.GetEqualityComparer() -> System.Collections.Generic.IEqualityComparer! -MessagePack.MessagePackSecurity.HashCollisionResistant.get -> bool -MessagePack.MessagePackSecurity.MaximumObjectGraphDepth.get -> int -MessagePack.MessagePackSecurity.MessagePackSecurity(MessagePack.MessagePackSecurity! copyFrom) -> void -MessagePack.MessagePackSecurity.WithHashCollisionResistant(bool hashCollisionResistant) -> MessagePack.MessagePackSecurity! -MessagePack.MessagePackSecurity.WithMaximumObjectGraphDepth(int maximumObjectGraphDepth) -> MessagePack.MessagePackSecurity! -MessagePack.MessagePackSerializerOptions.Security.get -> MessagePack.MessagePackSecurity! -MessagePack.MessagePackSerializerOptions.WithSecurity(MessagePack.MessagePackSecurity! security) -> MessagePack.MessagePackSerializerOptions! -MessagePack.MessagePackStreamReader.DiscardBufferedData() -> void -MessagePack.MessagePackStreamReader.MessagePackStreamReader(System.IO.Stream! stream, bool leaveOpen) -> void -MessagePack.MessagePackStreamReader.ReadArrayAsync(System.Threading.CancellationToken cancellationToken) -> System.Collections.Generic.IAsyncEnumerable>! -MessagePack.MessagePackWriter.WriteBinHeader(int length) -> void -MessagePack.MessagePackWriter.WriteStringHeader(int byteCount) -> void -static readonly MessagePack.MessagePackSecurity.TrustedData -> MessagePack.MessagePackSecurity! -static readonly MessagePack.MessagePackSecurity.UntrustedData -> MessagePack.MessagePackSecurity! -virtual MessagePack.MessagePackSecurity.Clone() -> MessagePack.MessagePackSecurity! -virtual MessagePack.MessagePackSecurity.GetHashCollisionResistantEqualityComparer() -> System.Collections.IEqualityComparer! -virtual MessagePack.MessagePackSecurity.GetHashCollisionResistantEqualityComparer() -> System.Collections.Generic.IEqualityComparer! -MessagePack.Formatters.ByteMemoryFormatter -MessagePack.Formatters.ByteMemoryFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> System.Memory -MessagePack.Formatters.ByteMemoryFormatter.Serialize(ref MessagePack.MessagePackWriter writer, System.Memory value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.ByteReadOnlyMemoryFormatter -MessagePack.Formatters.ByteReadOnlyMemoryFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> System.ReadOnlyMemory -MessagePack.Formatters.ByteReadOnlyMemoryFormatter.Serialize(ref MessagePack.MessagePackWriter writer, System.ReadOnlyMemory value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.ByteReadOnlySequenceFormatter -MessagePack.Formatters.ByteReadOnlySequenceFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> System.Buffers.ReadOnlySequence -MessagePack.Formatters.ByteReadOnlySequenceFormatter.Serialize(ref MessagePack.MessagePackWriter writer, System.Buffers.ReadOnlySequence value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.ExpandoObjectFormatter -MessagePack.Formatters.ExpandoObjectFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> System.Dynamic.ExpandoObject? -MessagePack.Formatters.ExpandoObjectFormatter.Serialize(ref MessagePack.MessagePackWriter writer, System.Dynamic.ExpandoObject? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.ForceTypelessFormatter -MessagePack.Formatters.ForceTypelessFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> T? -MessagePack.Formatters.ForceTypelessFormatter.ForceTypelessFormatter() -> void -MessagePack.Formatters.ForceTypelessFormatter.Serialize(ref MessagePack.MessagePackWriter writer, T? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.MemoryFormatter -MessagePack.Formatters.MemoryFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> System.Memory -MessagePack.Formatters.MemoryFormatter.MemoryFormatter() -> void -MessagePack.Formatters.MemoryFormatter.Serialize(ref MessagePack.MessagePackWriter writer, System.Memory value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.NonGenericInterfaceCollectionFormatter -MessagePack.Formatters.NonGenericInterfaceCollectionFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> System.Collections.ICollection? -MessagePack.Formatters.NonGenericInterfaceCollectionFormatter.Serialize(ref MessagePack.MessagePackWriter writer, System.Collections.ICollection? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.NonGenericInterfaceEnumerableFormatter -MessagePack.Formatters.NonGenericInterfaceEnumerableFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> System.Collections.IEnumerable? -MessagePack.Formatters.NonGenericInterfaceEnumerableFormatter.Serialize(ref MessagePack.MessagePackWriter writer, System.Collections.IEnumerable? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.PrimitiveObjectFormatter.PrimitiveObjectFormatter() -> void -MessagePack.Formatters.ReadOnlyMemoryFormatter -MessagePack.Formatters.ReadOnlyMemoryFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> System.ReadOnlyMemory -MessagePack.Formatters.ReadOnlyMemoryFormatter.ReadOnlyMemoryFormatter() -> void -MessagePack.Formatters.ReadOnlyMemoryFormatter.Serialize(ref MessagePack.MessagePackWriter writer, System.ReadOnlyMemory value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.ReadOnlySequenceFormatter -MessagePack.Formatters.ReadOnlySequenceFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> System.Buffers.ReadOnlySequence -MessagePack.Formatters.ReadOnlySequenceFormatter.ReadOnlySequenceFormatter() -> void -MessagePack.Formatters.ReadOnlySequenceFormatter.Serialize(ref MessagePack.MessagePackWriter writer, System.Buffers.ReadOnlySequence value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.TypeFormatter -MessagePack.Formatters.TypeFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> T? -MessagePack.Formatters.TypeFormatter.Serialize(ref MessagePack.MessagePackWriter writer, T? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.TypelessFormatter.TypelessFormatter() -> void -MessagePack.ImmutableCollection.ImmutableArrayFormatter -~MessagePack.ImmutableCollection.ImmutableArrayFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions options) -> System.Collections.Immutable.ImmutableArray -MessagePack.ImmutableCollection.ImmutableArrayFormatter.ImmutableArrayFormatter() -> void -~MessagePack.ImmutableCollection.ImmutableArrayFormatter.Serialize(ref MessagePack.MessagePackWriter writer, System.Collections.Immutable.ImmutableArray value, MessagePack.MessagePackSerializerOptions options) -> void -MessagePack.ImmutableCollection.ImmutableCollectionResolver -MessagePack.ImmutableCollection.ImmutableCollectionResolver.GetFormatter() -> MessagePack.Formatters.IMessagePackFormatter? -MessagePack.ImmutableCollection.ImmutableDictionaryFormatter -MessagePack.ImmutableCollection.ImmutableDictionaryFormatter.ImmutableDictionaryFormatter() -> void -MessagePack.ImmutableCollection.ImmutableHashSetFormatter -MessagePack.ImmutableCollection.ImmutableHashSetFormatter.ImmutableHashSetFormatter() -> void -MessagePack.ImmutableCollection.ImmutableListFormatter -MessagePack.ImmutableCollection.ImmutableListFormatter.ImmutableListFormatter() -> void -MessagePack.ImmutableCollection.ImmutableQueueBuilder -MessagePack.ImmutableCollection.ImmutableQueueBuilder.Add(T value) -> void -MessagePack.ImmutableCollection.ImmutableQueueBuilder.ImmutableQueueBuilder() -> void -~MessagePack.ImmutableCollection.ImmutableQueueBuilder.Q.get -> System.Collections.Immutable.ImmutableQueue -~MessagePack.ImmutableCollection.ImmutableQueueBuilder.Q.set -> void -MessagePack.ImmutableCollection.ImmutableQueueFormatter -MessagePack.ImmutableCollection.ImmutableQueueFormatter.ImmutableQueueFormatter() -> void -MessagePack.ImmutableCollection.ImmutableSortedDictionaryFormatter -MessagePack.ImmutableCollection.ImmutableSortedDictionaryFormatter.ImmutableSortedDictionaryFormatter() -> void -MessagePack.ImmutableCollection.ImmutableSortedSetFormatter -MessagePack.ImmutableCollection.ImmutableSortedSetFormatter.ImmutableSortedSetFormatter() -> void -MessagePack.ImmutableCollection.ImmutableStackFormatter -MessagePack.ImmutableCollection.ImmutableStackFormatter.ImmutableStackFormatter() -> void -MessagePack.ImmutableCollection.InterfaceImmutableDictionaryFormatter -MessagePack.ImmutableCollection.InterfaceImmutableDictionaryFormatter.InterfaceImmutableDictionaryFormatter() -> void -MessagePack.ImmutableCollection.InterfaceImmutableListFormatter -MessagePack.ImmutableCollection.InterfaceImmutableListFormatter.InterfaceImmutableListFormatter() -> void -MessagePack.ImmutableCollection.InterfaceImmutableQueueFormatter -MessagePack.ImmutableCollection.InterfaceImmutableQueueFormatter.InterfaceImmutableQueueFormatter() -> void -MessagePack.ImmutableCollection.InterfaceImmutableSetFormatter -MessagePack.ImmutableCollection.InterfaceImmutableSetFormatter.InterfaceImmutableSetFormatter() -> void -MessagePack.ImmutableCollection.InterfaceImmutableStackFormatter -MessagePack.ImmutableCollection.InterfaceImmutableStackFormatter.InterfaceImmutableStackFormatter() -> void -MessagePack.Resolvers.ExpandoObjectResolver -~override MessagePack.ImmutableCollection.ImmutableDictionaryFormatter.Add(System.Collections.Immutable.ImmutableDictionary.Builder collection, int index, TKey key, TValue value, MessagePack.MessagePackSerializerOptions options) -> void -~override MessagePack.ImmutableCollection.ImmutableDictionaryFormatter.Complete(System.Collections.Immutable.ImmutableDictionary.Builder intermediateCollection) -> System.Collections.Immutable.ImmutableDictionary -~override MessagePack.ImmutableCollection.ImmutableDictionaryFormatter.Create(int count, MessagePack.MessagePackSerializerOptions options) -> System.Collections.Immutable.ImmutableDictionary.Builder -~override MessagePack.ImmutableCollection.ImmutableDictionaryFormatter.GetSourceEnumerator(System.Collections.Immutable.ImmutableDictionary source) -> System.Collections.Immutable.ImmutableDictionary.Enumerator -~override MessagePack.ImmutableCollection.ImmutableHashSetFormatter.Add(System.Collections.Immutable.ImmutableHashSet.Builder collection, int index, T value, MessagePack.MessagePackSerializerOptions options) -> void -~override MessagePack.ImmutableCollection.ImmutableHashSetFormatter.Complete(System.Collections.Immutable.ImmutableHashSet.Builder intermediateCollection) -> System.Collections.Immutable.ImmutableHashSet -~override MessagePack.ImmutableCollection.ImmutableHashSetFormatter.Create(int count, MessagePack.MessagePackSerializerOptions options) -> System.Collections.Immutable.ImmutableHashSet.Builder -~override MessagePack.ImmutableCollection.ImmutableHashSetFormatter.GetSourceEnumerator(System.Collections.Immutable.ImmutableHashSet source) -> System.Collections.Immutable.ImmutableHashSet.Enumerator -~override MessagePack.ImmutableCollection.ImmutableListFormatter.Add(System.Collections.Immutable.ImmutableList.Builder collection, int index, T value, MessagePack.MessagePackSerializerOptions options) -> void -~override MessagePack.ImmutableCollection.ImmutableListFormatter.Complete(System.Collections.Immutable.ImmutableList.Builder intermediateCollection) -> System.Collections.Immutable.ImmutableList -~override MessagePack.ImmutableCollection.ImmutableListFormatter.Create(int count, MessagePack.MessagePackSerializerOptions options) -> System.Collections.Immutable.ImmutableList.Builder -~override MessagePack.ImmutableCollection.ImmutableListFormatter.GetSourceEnumerator(System.Collections.Immutable.ImmutableList source) -> System.Collections.Immutable.ImmutableList.Enumerator -~override MessagePack.ImmutableCollection.ImmutableQueueFormatter.Add(MessagePack.ImmutableCollection.ImmutableQueueBuilder collection, int index, T value, MessagePack.MessagePackSerializerOptions options) -> void -~override MessagePack.ImmutableCollection.ImmutableQueueFormatter.Complete(MessagePack.ImmutableCollection.ImmutableQueueBuilder intermediateCollection) -> System.Collections.Immutable.ImmutableQueue -~override MessagePack.ImmutableCollection.ImmutableQueueFormatter.Create(int count, MessagePack.MessagePackSerializerOptions options) -> MessagePack.ImmutableCollection.ImmutableQueueBuilder -~override MessagePack.ImmutableCollection.ImmutableSortedDictionaryFormatter.Add(System.Collections.Immutable.ImmutableSortedDictionary.Builder collection, int index, TKey key, TValue value, MessagePack.MessagePackSerializerOptions options) -> void -~override MessagePack.ImmutableCollection.ImmutableSortedDictionaryFormatter.Complete(System.Collections.Immutable.ImmutableSortedDictionary.Builder intermediateCollection) -> System.Collections.Immutable.ImmutableSortedDictionary -~override MessagePack.ImmutableCollection.ImmutableSortedDictionaryFormatter.Create(int count, MessagePack.MessagePackSerializerOptions options) -> System.Collections.Immutable.ImmutableSortedDictionary.Builder -~override MessagePack.ImmutableCollection.ImmutableSortedDictionaryFormatter.GetSourceEnumerator(System.Collections.Immutable.ImmutableSortedDictionary source) -> System.Collections.Immutable.ImmutableSortedDictionary.Enumerator -~override MessagePack.ImmutableCollection.ImmutableSortedSetFormatter.Add(System.Collections.Immutable.ImmutableSortedSet.Builder collection, int index, T value, MessagePack.MessagePackSerializerOptions options) -> void -~override MessagePack.ImmutableCollection.ImmutableSortedSetFormatter.Complete(System.Collections.Immutable.ImmutableSortedSet.Builder intermediateCollection) -> System.Collections.Immutable.ImmutableSortedSet -~override MessagePack.ImmutableCollection.ImmutableSortedSetFormatter.Create(int count, MessagePack.MessagePackSerializerOptions options) -> System.Collections.Immutable.ImmutableSortedSet.Builder -~override MessagePack.ImmutableCollection.ImmutableSortedSetFormatter.GetSourceEnumerator(System.Collections.Immutable.ImmutableSortedSet source) -> System.Collections.Immutable.ImmutableSortedSet.Enumerator -~override MessagePack.ImmutableCollection.ImmutableStackFormatter.Add(T[] collection, int index, T value, MessagePack.MessagePackSerializerOptions options) -> void -~override MessagePack.ImmutableCollection.ImmutableStackFormatter.Complete(T[] intermediateCollection) -> System.Collections.Immutable.ImmutableStack -~override MessagePack.ImmutableCollection.ImmutableStackFormatter.Create(int count, MessagePack.MessagePackSerializerOptions options) -> T[] -~override MessagePack.ImmutableCollection.InterfaceImmutableDictionaryFormatter.Add(System.Collections.Immutable.ImmutableDictionary.Builder collection, int index, TKey key, TValue value, MessagePack.MessagePackSerializerOptions options) -> void -~override MessagePack.ImmutableCollection.InterfaceImmutableDictionaryFormatter.Complete(System.Collections.Immutable.ImmutableDictionary.Builder intermediateCollection) -> System.Collections.Immutable.IImmutableDictionary -~override MessagePack.ImmutableCollection.InterfaceImmutableDictionaryFormatter.Create(int count, MessagePack.MessagePackSerializerOptions options) -> System.Collections.Immutable.ImmutableDictionary.Builder -~override MessagePack.ImmutableCollection.InterfaceImmutableListFormatter.Add(System.Collections.Immutable.ImmutableList.Builder collection, int index, T value, MessagePack.MessagePackSerializerOptions options) -> void -~override MessagePack.ImmutableCollection.InterfaceImmutableListFormatter.Complete(System.Collections.Immutable.ImmutableList.Builder intermediateCollection) -> System.Collections.Immutable.IImmutableList -~override MessagePack.ImmutableCollection.InterfaceImmutableListFormatter.Create(int count, MessagePack.MessagePackSerializerOptions options) -> System.Collections.Immutable.ImmutableList.Builder -~override MessagePack.ImmutableCollection.InterfaceImmutableQueueFormatter.Add(MessagePack.ImmutableCollection.ImmutableQueueBuilder collection, int index, T value, MessagePack.MessagePackSerializerOptions options) -> void -~override MessagePack.ImmutableCollection.InterfaceImmutableQueueFormatter.Complete(MessagePack.ImmutableCollection.ImmutableQueueBuilder intermediateCollection) -> System.Collections.Immutable.IImmutableQueue -~override MessagePack.ImmutableCollection.InterfaceImmutableQueueFormatter.Create(int count, MessagePack.MessagePackSerializerOptions options) -> MessagePack.ImmutableCollection.ImmutableQueueBuilder -~override MessagePack.ImmutableCollection.InterfaceImmutableSetFormatter.Add(System.Collections.Immutable.ImmutableHashSet.Builder collection, int index, T value, MessagePack.MessagePackSerializerOptions options) -> void -~override MessagePack.ImmutableCollection.InterfaceImmutableSetFormatter.Complete(System.Collections.Immutable.ImmutableHashSet.Builder intermediateCollection) -> System.Collections.Immutable.IImmutableSet -~override MessagePack.ImmutableCollection.InterfaceImmutableSetFormatter.Create(int count, MessagePack.MessagePackSerializerOptions options) -> System.Collections.Immutable.ImmutableHashSet.Builder -~override MessagePack.ImmutableCollection.InterfaceImmutableStackFormatter.Add(T[] collection, int index, T value, MessagePack.MessagePackSerializerOptions options) -> void -~override MessagePack.ImmutableCollection.InterfaceImmutableStackFormatter.Complete(T[] intermediateCollection) -> System.Collections.Immutable.IImmutableStack -~override MessagePack.ImmutableCollection.InterfaceImmutableStackFormatter.Create(int count, MessagePack.MessagePackSerializerOptions options) -> T[] -static readonly MessagePack.Formatters.ByteMemoryFormatter.Instance -> MessagePack.Formatters.ByteMemoryFormatter! -static readonly MessagePack.Formatters.ByteReadOnlyMemoryFormatter.Instance -> MessagePack.Formatters.ByteReadOnlyMemoryFormatter! -static readonly MessagePack.Formatters.ByteReadOnlySequenceFormatter.Instance -> MessagePack.Formatters.ByteReadOnlySequenceFormatter! -static readonly MessagePack.Formatters.ExpandoObjectFormatter.Instance -> MessagePack.Formatters.IMessagePackFormatter! -static readonly MessagePack.Formatters.NonGenericInterfaceCollectionFormatter.Instance -> MessagePack.Formatters.IMessagePackFormatter! -static readonly MessagePack.Formatters.NonGenericInterfaceEnumerableFormatter.Instance -> MessagePack.Formatters.IMessagePackFormatter! -static readonly MessagePack.Formatters.TypeFormatter.Instance -> MessagePack.Formatters.IMessagePackFormatter! -static readonly MessagePack.ImmutableCollection.ImmutableCollectionResolver.Instance -> MessagePack.ImmutableCollection.ImmutableCollectionResolver! -static readonly MessagePack.Resolvers.ExpandoObjectResolver.Instance -> MessagePack.IFormatterResolver! -static readonly MessagePack.Resolvers.ExpandoObjectResolver.Options -> MessagePack.MessagePackSerializerOptions! -virtual MessagePack.Formatters.PrimitiveObjectFormatter.DeserializeMap(ref MessagePack.MessagePackReader reader, int length, MessagePack.MessagePackSerializerOptions! options) -> object! -MessagePack.ExtensionHeader.ExtensionHeader() -> void -MessagePack.ExtensionResult.ExtensionResult() -> void -MessagePack.FormatterNotRegisteredException.FormatterNotRegisteredException(System.Runtime.Serialization.SerializationInfo! info, System.Runtime.Serialization.StreamingContext context) -> void -MessagePack.Formatters.HalfFormatter -MessagePack.Formatters.HalfFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> System.Half -MessagePack.Formatters.HalfFormatter.Serialize(ref MessagePack.MessagePackWriter writer, System.Half value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.InterfaceReadOnlySetFormatter -MessagePack.Formatters.InterfaceReadOnlySetFormatter.InterfaceReadOnlySetFormatter() -> void -MessagePack.MessagePackReader.MessagePackReader() -> void -MessagePack.MessagePackSerializerOptions.SequencePool.get -> MessagePack.SequencePool! -MessagePack.MessagePackSerializerOptions.WithPool(MessagePack.SequencePool! pool) -> MessagePack.MessagePackSerializerOptions! -MessagePack.MessagePackStreamReader.MessagePackStreamReader(System.IO.Stream! stream, bool leaveOpen, MessagePack.SequencePool! sequencePool) -> void -MessagePack.MessagePackStreamReader.ReadArrayHeaderAsync(System.Threading.CancellationToken cancellationToken) -> System.Threading.Tasks.ValueTask -MessagePack.MessagePackStreamReader.ReadMapHeaderAsync(System.Threading.CancellationToken cancellationToken) -> System.Threading.Tasks.ValueTask -MessagePack.MessagePackWriter.MessagePackWriter() -> void -MessagePack.SequencePool -MessagePack.SequencePool.SequencePool() -> void -MessagePack.SequencePool.SequencePool(int maxSize) -> void -MessagePack.SequencePool.SequencePool(int maxSize, System.Buffers.ArrayPool! arrayPool) -> void -MessagePack.SequencePool.SequencePool(int maxSize, System.Buffers.MemoryPool! memoryPool) -> void -MessagePack.TinyJsonException.TinyJsonException(System.Runtime.Serialization.SerializationInfo! info, System.Runtime.Serialization.StreamingContext context) -> void -static MessagePack.Nil.operator !=(MessagePack.Nil left, MessagePack.Nil right) -> bool -static MessagePack.Nil.operator ==(MessagePack.Nil left, MessagePack.Nil right) -> bool -static readonly MessagePack.Formatters.HalfFormatter.Instance -> MessagePack.Formatters.IMessagePackFormatter! -virtual MessagePack.MessagePackStreamReader.Dispose(bool disposing) -> void -MessagePack.Formatters.GenericEnumerableFormatter -MessagePack.Formatters.GenericEnumerableFormatter.GenericEnumerableFormatter() -> void -MessagePack.Formatters.GenericReadOnlyDictionaryFormatter -MessagePack.Formatters.GenericReadOnlyDictionaryFormatter.GenericReadOnlyDictionaryFormatter() -> void -MessagePack.Formatters.DateOnlyFormatter -MessagePack.Formatters.DateOnlyFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> System.DateOnly -MessagePack.Formatters.DateOnlyFormatter.Serialize(ref MessagePack.MessagePackWriter writer, System.DateOnly value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.StringInterningFormatter -MessagePack.Formatters.StringInterningFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> string? -MessagePack.Formatters.StringInterningFormatter.Serialize(ref MessagePack.MessagePackWriter writer, string? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.StringInterningFormatter.StringInterningFormatter() -> void -MessagePack.Formatters.TimeOnlyFormatter -MessagePack.Formatters.TimeOnlyFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> System.TimeOnly -MessagePack.Formatters.TimeOnlyFormatter.Serialize(ref MessagePack.MessagePackWriter writer, System.TimeOnly value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.MessagePackSerializerOptions.CompressionMinLength.get -> int -MessagePack.MessagePackSerializerOptions.SuggestedContiguousMemorySize.get -> int -MessagePack.MessagePackSerializerOptions.WithCompressionMinLength(int compressionMinLength) -> MessagePack.MessagePackSerializerOptions! -MessagePack.MessagePackSerializerOptions.WithSuggestedContiguousMemorySize(int suggestedContiguousMemorySize) -> MessagePack.MessagePackSerializerOptions! -static MessagePack.MessagePackWriter.GetEncodedLength(long value) -> int -static MessagePack.MessagePackWriter.GetEncodedLength(ulong value) -> int -static readonly MessagePack.Formatters.DateOnlyFormatter.Instance -> MessagePack.Formatters.DateOnlyFormatter! -static readonly MessagePack.Formatters.TimeOnlyFormatter.Instance -> MessagePack.Formatters.TimeOnlyFormatter! -const MessagePack.ReservedExtensionTypeCodes.Lz4Block = 99 -> sbyte -const MessagePack.ReservedExtensionTypeCodes.Lz4BlockArray = 98 -> sbyte -const MessagePack.ReservedExtensionTypeCodes.TypelessFormatter = 100 -> sbyte -const MessagePack.ReservedExtensionTypeCodes.UnityBounds = 35 -> sbyte -const MessagePack.ReservedExtensionTypeCodes.UnityColor = 34 -> sbyte -const MessagePack.ReservedExtensionTypeCodes.UnityDouble = 39 -> sbyte -const MessagePack.ReservedExtensionTypeCodes.UnityFloat = 38 -> sbyte -const MessagePack.ReservedExtensionTypeCodes.UnityInt = 37 -> sbyte -const MessagePack.ReservedExtensionTypeCodes.UnityQuaternion = 33 -> sbyte -const MessagePack.ReservedExtensionTypeCodes.UnityRect = 36 -> sbyte -const MessagePack.ReservedExtensionTypeCodes.UnityVector2 = 30 -> sbyte -const MessagePack.ReservedExtensionTypeCodes.UnityVector3 = 31 -> sbyte -const MessagePack.ReservedExtensionTypeCodes.UnityVector4 = 32 -> sbyte -MessagePack.CompositeResolverAttribute -MessagePack.CompositeResolverAttribute.CompositeResolverAttribute(params System.Type![]! formattersAndResolvers) -> void -MessagePack.CompositeResolverAttribute.IncludeLocalFormatters.get -> bool -MessagePack.CompositeResolverAttribute.IncludeLocalFormatters.set -> void -MessagePack.Formatters.BooleanListFormatter -MessagePack.Formatters.BooleanListFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> System.Collections.Generic.List? -MessagePack.Formatters.BooleanListFormatter.Serialize(ref MessagePack.MessagePackWriter writer, System.Collections.Generic.List? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.ByteListFormatter -MessagePack.Formatters.ByteListFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> System.Collections.Generic.List? -MessagePack.Formatters.ByteListFormatter.Serialize(ref MessagePack.MessagePackWriter writer, System.Collections.Generic.List? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.CharListFormatter -MessagePack.Formatters.CharListFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> System.Collections.Generic.List? -MessagePack.Formatters.CharListFormatter.Serialize(ref MessagePack.MessagePackWriter writer, System.Collections.Generic.List? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.DoubleListFormatter -MessagePack.Formatters.DoubleListFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> System.Collections.Generic.List? -MessagePack.Formatters.DoubleListFormatter.Serialize(ref MessagePack.MessagePackWriter writer, System.Collections.Generic.List? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.EnumAsStringFormatter.EnumAsStringFormatter(bool ignoreCase) -> void -MessagePack.Formatters.Int16ListFormatter -MessagePack.Formatters.Int16ListFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> System.Collections.Generic.List? -MessagePack.Formatters.Int16ListFormatter.Serialize(ref MessagePack.MessagePackWriter writer, System.Collections.Generic.List? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.Int32ListFormatter -MessagePack.Formatters.Int32ListFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> System.Collections.Generic.List? -MessagePack.Formatters.Int32ListFormatter.Serialize(ref MessagePack.MessagePackWriter writer, System.Collections.Generic.List? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.Int64ListFormatter -MessagePack.Formatters.Int64ListFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> System.Collections.Generic.List? -MessagePack.Formatters.Int64ListFormatter.Serialize(ref MessagePack.MessagePackWriter writer, System.Collections.Generic.List? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.Matrix3x2Formatter -MessagePack.Formatters.Matrix3x2Formatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> System.Numerics.Matrix3x2 -MessagePack.Formatters.Matrix3x2Formatter.Serialize(ref MessagePack.MessagePackWriter writer, System.Numerics.Matrix3x2 value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.Matrix4x4Formatter -MessagePack.Formatters.Matrix4x4Formatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> System.Numerics.Matrix4x4 -MessagePack.Formatters.Matrix4x4Formatter.Serialize(ref MessagePack.MessagePackWriter writer, System.Numerics.Matrix4x4 value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.PriorityQueueFormatter -MessagePack.Formatters.PriorityQueueFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> System.Collections.Generic.PriorityQueue? -MessagePack.Formatters.PriorityQueueFormatter.PriorityQueueFormatter() -> void -MessagePack.Formatters.PriorityQueueFormatter.PriorityQueueFormatter(System.Collections.Generic.IComparer? comparer) -> void -MessagePack.Formatters.PriorityQueueFormatter.Serialize(ref MessagePack.MessagePackWriter writer, System.Collections.Generic.PriorityQueue? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.QuaternionFormatter -MessagePack.Formatters.QuaternionFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> System.Numerics.Quaternion -MessagePack.Formatters.QuaternionFormatter.Serialize(ref MessagePack.MessagePackWriter writer, System.Numerics.Quaternion value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.SByteListFormatter -MessagePack.Formatters.SByteListFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> System.Collections.Generic.List? -MessagePack.Formatters.SByteListFormatter.Serialize(ref MessagePack.MessagePackWriter writer, System.Collections.Generic.List? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.SingleListFormatter -MessagePack.Formatters.SingleListFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> System.Collections.Generic.List? -MessagePack.Formatters.SingleListFormatter.Serialize(ref MessagePack.MessagePackWriter writer, System.Collections.Generic.List? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.UInt16ListFormatter -MessagePack.Formatters.UInt16ListFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> System.Collections.Generic.List? -MessagePack.Formatters.UInt16ListFormatter.Serialize(ref MessagePack.MessagePackWriter writer, System.Collections.Generic.List? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.UInt32ListFormatter -MessagePack.Formatters.UInt32ListFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> System.Collections.Generic.List? -MessagePack.Formatters.UInt32ListFormatter.Serialize(ref MessagePack.MessagePackWriter writer, System.Collections.Generic.List? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.UInt64ListFormatter -MessagePack.Formatters.UInt64ListFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> System.Collections.Generic.List? -MessagePack.Formatters.UInt64ListFormatter.Serialize(ref MessagePack.MessagePackWriter writer, System.Collections.Generic.List? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.Vector2Formatter -MessagePack.Formatters.Vector2Formatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> System.Numerics.Vector2 -MessagePack.Formatters.Vector2Formatter.Serialize(ref MessagePack.MessagePackWriter writer, System.Numerics.Vector2 value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.Vector3Formatter -MessagePack.Formatters.Vector3Formatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> System.Numerics.Vector3 -MessagePack.Formatters.Vector3Formatter.Serialize(ref MessagePack.MessagePackWriter writer, System.Numerics.Vector3 value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.Vector4Formatter -MessagePack.Formatters.Vector4Formatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> System.Numerics.Vector4 -MessagePack.Formatters.Vector4Formatter.Serialize(ref MessagePack.MessagePackWriter writer, System.Numerics.Vector4 value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.GeneratedMessagePackResolverAttribute -MessagePack.GeneratedMessagePackResolverAttribute.GeneratedMessagePackResolverAttribute() -> void -MessagePack.GeneratedMessagePackResolverAttribute.UseMapMode.get -> bool -MessagePack.GeneratedMessagePackResolverAttribute.UseMapMode.set -> void -MessagePack.ImmutableCollection.FrozenDictionaryFormatter -MessagePack.ImmutableCollection.FrozenDictionaryFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> System.Collections.Frozen.FrozenDictionary? -MessagePack.ImmutableCollection.FrozenDictionaryFormatter.FrozenDictionaryFormatter() -> void -MessagePack.ImmutableCollection.FrozenDictionaryFormatter.FrozenDictionaryFormatter(System.Collections.Generic.IEqualityComparer? comparer) -> void -MessagePack.ImmutableCollection.FrozenDictionaryFormatter.Serialize(ref MessagePack.MessagePackWriter writer, System.Collections.Frozen.FrozenDictionary? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.ImmutableCollection.FrozenSetFormatter -MessagePack.ImmutableCollection.FrozenSetFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> System.Collections.Frozen.FrozenSet? -MessagePack.ImmutableCollection.FrozenSetFormatter.FrozenSetFormatter() -> void -MessagePack.ImmutableCollection.FrozenSetFormatter.FrozenSetFormatter(System.Collections.Generic.IEqualityComparer! comparer) -> void -MessagePack.ImmutableCollection.FrozenSetFormatter.Serialize(ref MessagePack.MessagePackWriter writer, System.Collections.Frozen.FrozenSet? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Internal.GeneratedAssemblyMessagePackResolverAttribute -MessagePack.Internal.GeneratedAssemblyMessagePackResolverAttribute.GeneratedAssemblyMessagePackResolverAttribute(System.Type! resolverType, int majorVersion, int minorVersion) -> void -MessagePack.Internal.GeneratedAssemblyMessagePackResolverAttribute.MajorVersion.get -> int -MessagePack.Internal.GeneratedAssemblyMessagePackResolverAttribute.MinorVersion.get -> int -MessagePack.Internal.GeneratedAssemblyMessagePackResolverAttribute.ResolverType.get -> System.Type! -MessagePack.MessagePackPrimitives -MessagePack.MessagePackPrimitives.DecodeResult -MessagePack.MessagePackPrimitives.DecodeResult.EmptyBuffer = 2 -> MessagePack.MessagePackPrimitives.DecodeResult -MessagePack.MessagePackPrimitives.DecodeResult.InsufficientBuffer = 3 -> MessagePack.MessagePackPrimitives.DecodeResult -MessagePack.MessagePackPrimitives.DecodeResult.Success = 0 -> MessagePack.MessagePackPrimitives.DecodeResult -MessagePack.MessagePackPrimitives.DecodeResult.TokenMismatch = 1 -> MessagePack.MessagePackPrimitives.DecodeResult -MessagePack.ReservedExtensionTypeCodes -MessagePack.Resolvers.DynamicEnumAsStringIgnoreCaseResolver -MessagePack.Resolvers.DynamicEnumAsStringIgnoreCaseResolver.GetFormatter() -> MessagePack.Formatters.IMessagePackFormatter? -MessagePack.Resolvers.SourceGeneratedFormatterResolver -MessagePack.Resolvers.SourceGeneratedFormatterResolver.GetFormatter() -> MessagePack.Formatters.IMessagePackFormatter? -MessagePack.SequencePool.Clear() -> void -static MessagePack.MessagePackPrimitives.TryReadArrayHeader(System.ReadOnlySpan source, out uint count, out int tokenSize) -> MessagePack.MessagePackPrimitives.DecodeResult -static MessagePack.MessagePackPrimitives.TryReadBinHeader(System.ReadOnlySpan source, out uint length, out int tokenSize) -> MessagePack.MessagePackPrimitives.DecodeResult -static MessagePack.MessagePackPrimitives.TryReadBool(System.ReadOnlySpan source, out bool value, out int tokenSize) -> MessagePack.MessagePackPrimitives.DecodeResult -static MessagePack.MessagePackPrimitives.TryReadByte(System.ReadOnlySpan source, out byte value, out int tokenSize) -> MessagePack.MessagePackPrimitives.DecodeResult -static MessagePack.MessagePackPrimitives.TryReadChar(System.ReadOnlySpan source, out char value, out int tokenSize) -> MessagePack.MessagePackPrimitives.DecodeResult -static MessagePack.MessagePackPrimitives.TryReadDateTime(System.ReadOnlySpan source, MessagePack.ExtensionHeader header, out System.DateTime value, out int tokenSize) -> MessagePack.MessagePackPrimitives.DecodeResult -static MessagePack.MessagePackPrimitives.TryReadDateTime(System.ReadOnlySpan source, out System.DateTime value, out int tokenSize) -> MessagePack.MessagePackPrimitives.DecodeResult -static MessagePack.MessagePackPrimitives.TryReadDouble(System.ReadOnlySpan source, out double value, out int tokenSize) -> MessagePack.MessagePackPrimitives.DecodeResult -static MessagePack.MessagePackPrimitives.TryReadExtensionHeader(System.ReadOnlySpan source, out MessagePack.ExtensionHeader extensionHeader, out int tokenSize) -> MessagePack.MessagePackPrimitives.DecodeResult -static MessagePack.MessagePackPrimitives.TryReadInt16(System.ReadOnlySpan source, out short value, out int tokenSize) -> MessagePack.MessagePackPrimitives.DecodeResult -static MessagePack.MessagePackPrimitives.TryReadInt32(System.ReadOnlySpan source, out int value, out int tokenSize) -> MessagePack.MessagePackPrimitives.DecodeResult -static MessagePack.MessagePackPrimitives.TryReadInt64(System.ReadOnlySpan source, out long value, out int tokenSize) -> MessagePack.MessagePackPrimitives.DecodeResult -static MessagePack.MessagePackPrimitives.TryReadMapHeader(System.ReadOnlySpan source, out uint count, out int tokenSize) -> MessagePack.MessagePackPrimitives.DecodeResult -static MessagePack.MessagePackPrimitives.TryReadNil(System.ReadOnlySpan source, out int tokenSize) -> MessagePack.MessagePackPrimitives.DecodeResult -static MessagePack.MessagePackPrimitives.TryReadSByte(System.ReadOnlySpan source, out sbyte value, out int tokenSize) -> MessagePack.MessagePackPrimitives.DecodeResult -static MessagePack.MessagePackPrimitives.TryReadSingle(System.ReadOnlySpan source, out float value, out int tokenSize) -> MessagePack.MessagePackPrimitives.DecodeResult -static MessagePack.MessagePackPrimitives.TryReadStringHeader(System.ReadOnlySpan source, out uint length, out int tokenSize) -> MessagePack.MessagePackPrimitives.DecodeResult -static MessagePack.MessagePackPrimitives.TryReadUInt16(System.ReadOnlySpan source, out ushort value, out int tokenSize) -> MessagePack.MessagePackPrimitives.DecodeResult -static MessagePack.MessagePackPrimitives.TryReadUInt32(System.ReadOnlySpan source, out uint value, out int tokenSize) -> MessagePack.MessagePackPrimitives.DecodeResult -static MessagePack.MessagePackPrimitives.TryReadUInt64(System.ReadOnlySpan source, out ulong value, out int tokenSize) -> MessagePack.MessagePackPrimitives.DecodeResult -static MessagePack.MessagePackPrimitives.TryWrite(System.Span destination, bool value, out int bytesWritten) -> bool -static MessagePack.MessagePackPrimitives.TryWrite(System.Span destination, byte value, out int bytesWritten) -> bool -static MessagePack.MessagePackPrimitives.TryWrite(System.Span destination, char value, out int bytesWritten) -> bool -static MessagePack.MessagePackPrimitives.TryWrite(System.Span destination, double value, out int bytesWritten) -> bool -static MessagePack.MessagePackPrimitives.TryWrite(System.Span destination, float value, out int bytesWritten) -> bool -static MessagePack.MessagePackPrimitives.TryWrite(System.Span destination, int value, out int bytesWritten) -> bool -static MessagePack.MessagePackPrimitives.TryWrite(System.Span destination, long value, out int bytesWritten) -> bool -static MessagePack.MessagePackPrimitives.TryWrite(System.Span destination, sbyte value, out int bytesWritten) -> bool -static MessagePack.MessagePackPrimitives.TryWrite(System.Span destination, short value, out int bytesWritten) -> bool -static MessagePack.MessagePackPrimitives.TryWrite(System.Span destination, System.DateTime value, out int bytesWritten) -> bool -static MessagePack.MessagePackPrimitives.TryWrite(System.Span destination, uint value, out int bytesWritten) -> bool -static MessagePack.MessagePackPrimitives.TryWrite(System.Span destination, ulong value, out int bytesWritten) -> bool -static MessagePack.MessagePackPrimitives.TryWrite(System.Span destination, ushort value, out int bytesWritten) -> bool -static MessagePack.MessagePackPrimitives.TryWriteArrayHeader(System.Span destination, uint count, out int bytesWritten) -> bool -static MessagePack.MessagePackPrimitives.TryWriteBinHeader(System.Span destination, uint length, out int bytesWritten) -> bool -static MessagePack.MessagePackPrimitives.TryWriteExtensionFormatHeader(System.Span destination, MessagePack.ExtensionHeader extensionHeader, out int bytesWritten) -> bool -static MessagePack.MessagePackPrimitives.TryWriteInt16(System.Span destination, short value, out int bytesWritten) -> bool -static MessagePack.MessagePackPrimitives.TryWriteInt32(System.Span destination, int value, out int bytesWritten) -> bool -static MessagePack.MessagePackPrimitives.TryWriteInt64(System.Span destination, long value, out int bytesWritten) -> bool -static MessagePack.MessagePackPrimitives.TryWriteInt8(System.Span destination, sbyte value, out int bytesWritten) -> bool -static MessagePack.MessagePackPrimitives.TryWriteMapHeader(System.Span destination, uint count, out int bytesWritten) -> bool -static MessagePack.MessagePackPrimitives.TryWriteNil(System.Span destination, out int bytesWritten) -> bool -static MessagePack.MessagePackPrimitives.TryWriteStringHeader(System.Span destination, uint byteCount, out int bytesWritten) -> bool -static MessagePack.MessagePackPrimitives.TryWriteUInt16(System.Span destination, ushort value, out int bytesWritten) -> bool -static MessagePack.MessagePackPrimitives.TryWriteUInt32(System.Span destination, uint value, out int bytesWritten) -> bool -static MessagePack.MessagePackPrimitives.TryWriteUInt64(System.Span destination, ulong value, out int bytesWritten) -> bool -static MessagePack.MessagePackPrimitives.TryWriteUInt8(System.Span destination, byte value, out int bytesWritten) -> bool -static readonly MessagePack.Formatters.BooleanListFormatter.Instance -> MessagePack.Formatters.BooleanListFormatter! -static readonly MessagePack.Formatters.ByteListFormatter.Instance -> MessagePack.Formatters.ByteListFormatter! -static readonly MessagePack.Formatters.CharListFormatter.Instance -> MessagePack.Formatters.CharListFormatter! -static readonly MessagePack.Formatters.DoubleListFormatter.Instance -> MessagePack.Formatters.DoubleListFormatter! -static readonly MessagePack.Formatters.Int16ListFormatter.Instance -> MessagePack.Formatters.Int16ListFormatter! -static readonly MessagePack.Formatters.Int32ListFormatter.Instance -> MessagePack.Formatters.Int32ListFormatter! -static readonly MessagePack.Formatters.Int64ListFormatter.Instance -> MessagePack.Formatters.Int64ListFormatter! -static readonly MessagePack.Formatters.Matrix3x2Formatter.Instance -> MessagePack.Formatters.IMessagePackFormatter! -static readonly MessagePack.Formatters.Matrix4x4Formatter.Instance -> MessagePack.Formatters.IMessagePackFormatter! -static readonly MessagePack.Formatters.QuaternionFormatter.Instance -> MessagePack.Formatters.IMessagePackFormatter! -static readonly MessagePack.Formatters.SByteListFormatter.Instance -> MessagePack.Formatters.SByteListFormatter! -static readonly MessagePack.Formatters.SingleListFormatter.Instance -> MessagePack.Formatters.SingleListFormatter! -static readonly MessagePack.Formatters.UInt16ListFormatter.Instance -> MessagePack.Formatters.UInt16ListFormatter! -static readonly MessagePack.Formatters.UInt32ListFormatter.Instance -> MessagePack.Formatters.UInt32ListFormatter! -static readonly MessagePack.Formatters.UInt64ListFormatter.Instance -> MessagePack.Formatters.UInt64ListFormatter! -static readonly MessagePack.Formatters.Vector2Formatter.Instance -> MessagePack.Formatters.IMessagePackFormatter! -static readonly MessagePack.Formatters.Vector3Formatter.Instance -> MessagePack.Formatters.IMessagePackFormatter! -static readonly MessagePack.Formatters.Vector4Formatter.Instance -> MessagePack.Formatters.IMessagePackFormatter! -static readonly MessagePack.Resolvers.DynamicEnumAsStringIgnoreCaseResolver.Instance -> MessagePack.Resolvers.DynamicEnumAsStringIgnoreCaseResolver! -static readonly MessagePack.Resolvers.SourceGeneratedFormatterResolver.Instance -> MessagePack.Resolvers.SourceGeneratedFormatterResolver! -static MessagePack.MessagePackSerializer.Typeless.Deserialize(System.ReadOnlyMemory bytes, MessagePack.MessagePackSerializerOptions? options = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) -> object? -MessagePack.Formatters.Int128Formatter -MessagePack.Formatters.Int128Formatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> System.Int128 -MessagePack.Formatters.Int128Formatter.Serialize(ref MessagePack.MessagePackWriter writer, System.Int128 value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.RuneFormatter -MessagePack.Formatters.RuneFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> System.Text.Rune -MessagePack.Formatters.RuneFormatter.Serialize(ref MessagePack.MessagePackWriter writer, System.Text.Rune value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.UInt128Formatter -MessagePack.Formatters.UInt128Formatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> System.UInt128 -MessagePack.Formatters.UInt128Formatter.Serialize(ref MessagePack.MessagePackWriter writer, System.UInt128 value, MessagePack.MessagePackSerializerOptions! options) -> void -static readonly MessagePack.Formatters.Int128Formatter.Instance -> MessagePack.Formatters.IMessagePackFormatter! -static readonly MessagePack.Formatters.RuneFormatter.Instance -> MessagePack.Formatters.IMessagePackFormatter! -static readonly MessagePack.Formatters.UInt128Formatter.Instance -> MessagePack.Formatters.IMessagePackFormatter! \ No newline at end of file diff --git a/src/MessagePack/net8.0/PublicAPI.Unshipped.txt b/src/MessagePack/net8.0/PublicAPI.Unshipped.txt deleted file mode 100644 index e69de29bb..000000000 diff --git a/src/MessagePack/net9.0/PublicAPI.Shipped.txt b/src/MessagePack/net9.0/PublicAPI.Shipped.txt deleted file mode 100644 index 1e1af7a71..000000000 --- a/src/MessagePack/net9.0/PublicAPI.Shipped.txt +++ /dev/null @@ -1,1392 +0,0 @@ -#nullable enable -MessagePack.ExtensionHeader -MessagePack.ExtensionHeader.ExtensionHeader(sbyte typeCode, int length) -> void -MessagePack.ExtensionHeader.ExtensionHeader(sbyte typeCode, uint length) -> void -MessagePack.ExtensionHeader.Length.get -> uint -MessagePack.ExtensionHeader.TypeCode.get -> sbyte -MessagePack.ExtensionResult -MessagePack.ExtensionResult.Data.get -> System.Buffers.ReadOnlySequence -MessagePack.ExtensionResult.ExtensionResult(sbyte typeCode, System.Buffers.ReadOnlySequence data) -> void -MessagePack.ExtensionResult.ExtensionResult(sbyte typeCode, System.Memory data) -> void -MessagePack.ExtensionResult.Header.get -> MessagePack.ExtensionHeader -MessagePack.ExtensionResult.TypeCode.get -> sbyte -MessagePack.FormatterNotRegisteredException -MessagePack.FormatterNotRegisteredException.FormatterNotRegisteredException(string? message) -> void -MessagePack.FormatterResolverExtensions -MessagePack.Formatters.ArrayFormatter -MessagePack.Formatters.ArrayFormatter.ArrayFormatter() -> void -MessagePack.Formatters.ArrayFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> T[]? -MessagePack.Formatters.ArrayFormatter.Serialize(ref MessagePack.MessagePackWriter writer, T[]? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.ArraySegmentFormatter -MessagePack.Formatters.ArraySegmentFormatter.ArraySegmentFormatter() -> void -MessagePack.Formatters.ArraySegmentFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> System.ArraySegment -MessagePack.Formatters.ArraySegmentFormatter.Serialize(ref MessagePack.MessagePackWriter writer, System.ArraySegment value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.BigIntegerFormatter -MessagePack.Formatters.BigIntegerFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> System.Numerics.BigInteger -MessagePack.Formatters.BigIntegerFormatter.Serialize(ref MessagePack.MessagePackWriter writer, System.Numerics.BigInteger value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.BitArrayFormatter -MessagePack.Formatters.BitArrayFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> System.Collections.BitArray? -MessagePack.Formatters.BitArrayFormatter.Serialize(ref MessagePack.MessagePackWriter writer, System.Collections.BitArray? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.BooleanArrayFormatter -MessagePack.Formatters.BooleanArrayFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> bool[]? -MessagePack.Formatters.BooleanArrayFormatter.Serialize(ref MessagePack.MessagePackWriter writer, bool[]? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.BooleanFormatter -MessagePack.Formatters.BooleanFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> bool -MessagePack.Formatters.BooleanFormatter.Serialize(ref MessagePack.MessagePackWriter writer, bool value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.ByteArrayFormatter -MessagePack.Formatters.ByteArrayFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> byte[]? -MessagePack.Formatters.ByteArrayFormatter.Serialize(ref MessagePack.MessagePackWriter writer, byte[]? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.ByteArraySegmentFormatter -MessagePack.Formatters.ByteArraySegmentFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> System.ArraySegment -MessagePack.Formatters.ByteArraySegmentFormatter.Serialize(ref MessagePack.MessagePackWriter writer, System.ArraySegment value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.ByteFormatter -MessagePack.Formatters.ByteFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> byte -MessagePack.Formatters.ByteFormatter.Serialize(ref MessagePack.MessagePackWriter writer, byte value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.CharArrayFormatter -MessagePack.Formatters.CharArrayFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> char[]? -MessagePack.Formatters.CharArrayFormatter.Serialize(ref MessagePack.MessagePackWriter writer, char[]? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.CharFormatter -MessagePack.Formatters.CharFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> char -MessagePack.Formatters.CharFormatter.Serialize(ref MessagePack.MessagePackWriter writer, char value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.CollectionFormatterBase -MessagePack.Formatters.CollectionFormatterBase.CollectionFormatterBase() -> void -MessagePack.Formatters.CollectionFormatterBase -MessagePack.Formatters.CollectionFormatterBase.CollectionFormatterBase() -> void -MessagePack.Formatters.CollectionFormatterBase -MessagePack.Formatters.CollectionFormatterBase.CollectionFormatterBase() -> void -MessagePack.Formatters.CollectionFormatterBase.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> TCollection? -MessagePack.Formatters.CollectionFormatterBase.Serialize(ref MessagePack.MessagePackWriter writer, TCollection? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.ComplexFormatter -MessagePack.Formatters.ComplexFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> System.Numerics.Complex -MessagePack.Formatters.ComplexFormatter.Serialize(ref MessagePack.MessagePackWriter writer, System.Numerics.Complex value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.ConcurrentBagFormatter -MessagePack.Formatters.ConcurrentBagFormatter.ConcurrentBagFormatter() -> void -MessagePack.Formatters.ConcurrentDictionaryFormatter -MessagePack.Formatters.ConcurrentDictionaryFormatter.ConcurrentDictionaryFormatter() -> void -MessagePack.Formatters.ConcurrentQueueFormatter -MessagePack.Formatters.ConcurrentQueueFormatter.ConcurrentQueueFormatter() -> void -MessagePack.Formatters.ConcurrentStackFormatter -MessagePack.Formatters.ConcurrentStackFormatter.ConcurrentStackFormatter() -> void -MessagePack.Formatters.DateTimeArrayFormatter -MessagePack.Formatters.DateTimeArrayFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> System.DateTime[]? -MessagePack.Formatters.DateTimeArrayFormatter.Serialize(ref MessagePack.MessagePackWriter writer, System.DateTime[]? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.DateTimeFormatter -MessagePack.Formatters.DateTimeFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> System.DateTime -MessagePack.Formatters.DateTimeFormatter.Serialize(ref MessagePack.MessagePackWriter writer, System.DateTime value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.DateTimeOffsetFormatter -MessagePack.Formatters.DateTimeOffsetFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> System.DateTimeOffset -MessagePack.Formatters.DateTimeOffsetFormatter.Serialize(ref MessagePack.MessagePackWriter writer, System.DateTimeOffset value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.DecimalFormatter -MessagePack.Formatters.DecimalFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> decimal -MessagePack.Formatters.DecimalFormatter.Serialize(ref MessagePack.MessagePackWriter writer, decimal value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.DictionaryFormatter -MessagePack.Formatters.DictionaryFormatter.DictionaryFormatter() -> void -MessagePack.Formatters.DictionaryFormatterBase -MessagePack.Formatters.DictionaryFormatterBase.DictionaryFormatterBase() -> void -MessagePack.Formatters.DictionaryFormatterBase -MessagePack.Formatters.DictionaryFormatterBase.DictionaryFormatterBase() -> void -MessagePack.Formatters.DictionaryFormatterBase -MessagePack.Formatters.DictionaryFormatterBase.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> TDictionary? -MessagePack.Formatters.DictionaryFormatterBase.DictionaryFormatterBase() -> void -MessagePack.Formatters.DictionaryFormatterBase.Serialize(ref MessagePack.MessagePackWriter writer, TDictionary? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.DoubleArrayFormatter -MessagePack.Formatters.DoubleArrayFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> double[]? -MessagePack.Formatters.DoubleArrayFormatter.Serialize(ref MessagePack.MessagePackWriter writer, double[]? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.DoubleFormatter -MessagePack.Formatters.DoubleFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> double -MessagePack.Formatters.DoubleFormatter.Serialize(ref MessagePack.MessagePackWriter writer, double value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.DynamicObjectTypeFallbackFormatter -MessagePack.Formatters.DynamicObjectTypeFallbackFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> object? -MessagePack.Formatters.DynamicObjectTypeFallbackFormatter.Serialize(ref MessagePack.MessagePackWriter writer, object? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.EnumAsStringFormatter -MessagePack.Formatters.EnumAsStringFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> T -MessagePack.Formatters.EnumAsStringFormatter.EnumAsStringFormatter() -> void -MessagePack.Formatters.EnumAsStringFormatter.Serialize(ref MessagePack.MessagePackWriter writer, T value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.ForceByteBlockFormatter -MessagePack.Formatters.ForceByteBlockFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> byte -MessagePack.Formatters.ForceByteBlockFormatter.Serialize(ref MessagePack.MessagePackWriter writer, byte value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.ForceInt16BlockArrayFormatter -MessagePack.Formatters.ForceInt16BlockArrayFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> short[]? -MessagePack.Formatters.ForceInt16BlockArrayFormatter.Serialize(ref MessagePack.MessagePackWriter writer, short[]? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.ForceInt16BlockFormatter -MessagePack.Formatters.ForceInt16BlockFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> short -MessagePack.Formatters.ForceInt16BlockFormatter.Serialize(ref MessagePack.MessagePackWriter writer, short value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.ForceInt32BlockArrayFormatter -MessagePack.Formatters.ForceInt32BlockArrayFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> int[]? -MessagePack.Formatters.ForceInt32BlockArrayFormatter.Serialize(ref MessagePack.MessagePackWriter writer, int[]? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.ForceInt32BlockFormatter -MessagePack.Formatters.ForceInt32BlockFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> int -MessagePack.Formatters.ForceInt32BlockFormatter.Serialize(ref MessagePack.MessagePackWriter writer, int value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.ForceInt64BlockArrayFormatter -MessagePack.Formatters.ForceInt64BlockArrayFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> long[]? -MessagePack.Formatters.ForceInt64BlockArrayFormatter.Serialize(ref MessagePack.MessagePackWriter writer, long[]? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.ForceInt64BlockFormatter -MessagePack.Formatters.ForceInt64BlockFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> long -MessagePack.Formatters.ForceInt64BlockFormatter.Serialize(ref MessagePack.MessagePackWriter writer, long value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.ForceSByteBlockArrayFormatter -MessagePack.Formatters.ForceSByteBlockArrayFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> sbyte[]? -MessagePack.Formatters.ForceSByteBlockArrayFormatter.Serialize(ref MessagePack.MessagePackWriter writer, sbyte[]? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.ForceSByteBlockFormatter -MessagePack.Formatters.ForceSByteBlockFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> sbyte -MessagePack.Formatters.ForceSByteBlockFormatter.Serialize(ref MessagePack.MessagePackWriter writer, sbyte value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.ForceUInt16BlockArrayFormatter -MessagePack.Formatters.ForceUInt16BlockArrayFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> ushort[]? -MessagePack.Formatters.ForceUInt16BlockArrayFormatter.Serialize(ref MessagePack.MessagePackWriter writer, ushort[]? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.ForceUInt16BlockFormatter -MessagePack.Formatters.ForceUInt16BlockFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> ushort -MessagePack.Formatters.ForceUInt16BlockFormatter.Serialize(ref MessagePack.MessagePackWriter writer, ushort value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.ForceUInt32BlockArrayFormatter -MessagePack.Formatters.ForceUInt32BlockArrayFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> uint[]? -MessagePack.Formatters.ForceUInt32BlockArrayFormatter.Serialize(ref MessagePack.MessagePackWriter writer, uint[]? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.ForceUInt32BlockFormatter -MessagePack.Formatters.ForceUInt32BlockFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> uint -MessagePack.Formatters.ForceUInt32BlockFormatter.Serialize(ref MessagePack.MessagePackWriter writer, uint value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.ForceUInt64BlockArrayFormatter -MessagePack.Formatters.ForceUInt64BlockArrayFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> ulong[]? -MessagePack.Formatters.ForceUInt64BlockArrayFormatter.Serialize(ref MessagePack.MessagePackWriter writer, ulong[]? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.ForceUInt64BlockFormatter -MessagePack.Formatters.ForceUInt64BlockFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> ulong -MessagePack.Formatters.ForceUInt64BlockFormatter.Serialize(ref MessagePack.MessagePackWriter writer, ulong value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.FourDimensionalArrayFormatter -MessagePack.Formatters.FourDimensionalArrayFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> T[,,,]? -MessagePack.Formatters.FourDimensionalArrayFormatter.FourDimensionalArrayFormatter() -> void -MessagePack.Formatters.FourDimensionalArrayFormatter.Serialize(ref MessagePack.MessagePackWriter writer, T[,,,]? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.GenericCollectionFormatter -MessagePack.Formatters.GenericCollectionFormatter.GenericCollectionFormatter() -> void -MessagePack.Formatters.GenericDictionaryFormatter -MessagePack.Formatters.GenericDictionaryFormatter.GenericDictionaryFormatter() -> void -MessagePack.Formatters.GenericEnumFormatter -MessagePack.Formatters.GenericEnumFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> T -MessagePack.Formatters.GenericEnumFormatter.GenericEnumFormatter() -> void -MessagePack.Formatters.GenericEnumFormatter.Serialize(ref MessagePack.MessagePackWriter writer, T value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.GuidFormatter -MessagePack.Formatters.GuidFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> System.Guid -MessagePack.Formatters.GuidFormatter.Serialize(ref MessagePack.MessagePackWriter writer, System.Guid value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.HashSetFormatter -MessagePack.Formatters.HashSetFormatter.HashSetFormatter() -> void -MessagePack.Formatters.IMessagePackFormatter -MessagePack.Formatters.IMessagePackFormatter -MessagePack.Formatters.IMessagePackFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> T -MessagePack.Formatters.IMessagePackFormatter.Serialize(ref MessagePack.MessagePackWriter writer, T value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.IgnoreFormatter -MessagePack.Formatters.IgnoreFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> T? -MessagePack.Formatters.IgnoreFormatter.IgnoreFormatter() -> void -MessagePack.Formatters.IgnoreFormatter.Serialize(ref MessagePack.MessagePackWriter writer, T? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.Int16ArrayFormatter -MessagePack.Formatters.Int16ArrayFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> short[]? -MessagePack.Formatters.Int16ArrayFormatter.Serialize(ref MessagePack.MessagePackWriter writer, short[]? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.Int16Formatter -MessagePack.Formatters.Int16Formatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> short -MessagePack.Formatters.Int16Formatter.Serialize(ref MessagePack.MessagePackWriter writer, short value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.Int32ArrayFormatter -MessagePack.Formatters.Int32ArrayFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> int[]? -MessagePack.Formatters.Int32ArrayFormatter.Serialize(ref MessagePack.MessagePackWriter writer, int[]? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.Int32Formatter -MessagePack.Formatters.Int32Formatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> int -MessagePack.Formatters.Int32Formatter.Serialize(ref MessagePack.MessagePackWriter writer, int value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.Int64ArrayFormatter -MessagePack.Formatters.Int64ArrayFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> long[]? -MessagePack.Formatters.Int64ArrayFormatter.Serialize(ref MessagePack.MessagePackWriter writer, long[]? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.Int64Formatter -MessagePack.Formatters.Int64Formatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> long -MessagePack.Formatters.Int64Formatter.Serialize(ref MessagePack.MessagePackWriter writer, long value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.InterfaceCollectionFormatter -MessagePack.Formatters.InterfaceCollectionFormatter.InterfaceCollectionFormatter() -> void -MessagePack.Formatters.InterfaceDictionaryFormatter -MessagePack.Formatters.InterfaceDictionaryFormatter.InterfaceDictionaryFormatter() -> void -MessagePack.Formatters.InterfaceEnumerableFormatter -MessagePack.Formatters.InterfaceEnumerableFormatter.InterfaceEnumerableFormatter() -> void -MessagePack.Formatters.InterfaceGroupingFormatter -MessagePack.Formatters.InterfaceGroupingFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> System.Linq.IGrouping? -MessagePack.Formatters.InterfaceGroupingFormatter.InterfaceGroupingFormatter() -> void -MessagePack.Formatters.InterfaceGroupingFormatter.Serialize(ref MessagePack.MessagePackWriter writer, System.Linq.IGrouping? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.InterfaceListFormatter -MessagePack.Formatters.InterfaceListFormatter.InterfaceListFormatter() -> void -MessagePack.Formatters.InterfaceLookupFormatter -MessagePack.Formatters.InterfaceLookupFormatter.InterfaceLookupFormatter() -> void -MessagePack.Formatters.InterfaceReadOnlyCollectionFormatter -MessagePack.Formatters.InterfaceReadOnlyCollectionFormatter.InterfaceReadOnlyCollectionFormatter() -> void -MessagePack.Formatters.InterfaceReadOnlyDictionaryFormatter -MessagePack.Formatters.InterfaceReadOnlyDictionaryFormatter.InterfaceReadOnlyDictionaryFormatter() -> void -MessagePack.Formatters.InterfaceReadOnlyListFormatter -MessagePack.Formatters.InterfaceReadOnlyListFormatter.InterfaceReadOnlyListFormatter() -> void -MessagePack.Formatters.InterfaceSetFormatter -MessagePack.Formatters.InterfaceSetFormatter.InterfaceSetFormatter() -> void -MessagePack.Formatters.KeyValuePairFormatter -MessagePack.Formatters.KeyValuePairFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> System.Collections.Generic.KeyValuePair -MessagePack.Formatters.KeyValuePairFormatter.KeyValuePairFormatter() -> void -MessagePack.Formatters.KeyValuePairFormatter.Serialize(ref MessagePack.MessagePackWriter writer, System.Collections.Generic.KeyValuePair value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.LazyFormatter -MessagePack.Formatters.LazyFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> System.Lazy? -MessagePack.Formatters.LazyFormatter.LazyFormatter() -> void -MessagePack.Formatters.LazyFormatter.Serialize(ref MessagePack.MessagePackWriter writer, System.Lazy? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.LinkedListFormatter -MessagePack.Formatters.LinkedListFormatter.LinkedListFormatter() -> void -MessagePack.Formatters.ListFormatter -MessagePack.Formatters.ListFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> System.Collections.Generic.List? -MessagePack.Formatters.ListFormatter.ListFormatter() -> void -MessagePack.Formatters.ListFormatter.Serialize(ref MessagePack.MessagePackWriter writer, System.Collections.Generic.List? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.NativeDateTimeArrayFormatter -MessagePack.Formatters.NativeDateTimeArrayFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> System.DateTime[]? -MessagePack.Formatters.NativeDateTimeArrayFormatter.NativeDateTimeArrayFormatter() -> void -MessagePack.Formatters.NativeDateTimeArrayFormatter.Serialize(ref MessagePack.MessagePackWriter writer, System.DateTime[]? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.NativeDateTimeFormatter -MessagePack.Formatters.NativeDateTimeFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> System.DateTime -MessagePack.Formatters.NativeDateTimeFormatter.NativeDateTimeFormatter() -> void -MessagePack.Formatters.NativeDateTimeFormatter.Serialize(ref MessagePack.MessagePackWriter writer, System.DateTime value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.NativeDecimalFormatter -MessagePack.Formatters.NativeDecimalFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> decimal -MessagePack.Formatters.NativeDecimalFormatter.Serialize(ref MessagePack.MessagePackWriter writer, decimal value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.NativeGuidFormatter -MessagePack.Formatters.NativeGuidFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> System.Guid -MessagePack.Formatters.NativeGuidFormatter.Serialize(ref MessagePack.MessagePackWriter writer, System.Guid value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.NilFormatter -MessagePack.Formatters.NilFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> MessagePack.Nil -MessagePack.Formatters.NilFormatter.Serialize(ref MessagePack.MessagePackWriter writer, MessagePack.Nil value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.NonGenericDictionaryFormatter -MessagePack.Formatters.NonGenericDictionaryFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> T? -MessagePack.Formatters.NonGenericDictionaryFormatter.NonGenericDictionaryFormatter() -> void -MessagePack.Formatters.NonGenericDictionaryFormatter.Serialize(ref MessagePack.MessagePackWriter writer, T? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.NonGenericInterfaceDictionaryFormatter -MessagePack.Formatters.NonGenericInterfaceDictionaryFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> System.Collections.IDictionary? -MessagePack.Formatters.NonGenericInterfaceDictionaryFormatter.Serialize(ref MessagePack.MessagePackWriter writer, System.Collections.IDictionary? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.NonGenericInterfaceListFormatter -MessagePack.Formatters.NonGenericInterfaceListFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> System.Collections.IList? -MessagePack.Formatters.NonGenericInterfaceListFormatter.Serialize(ref MessagePack.MessagePackWriter writer, System.Collections.IList? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.NonGenericListFormatter -MessagePack.Formatters.NonGenericListFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> T? -MessagePack.Formatters.NonGenericListFormatter.NonGenericListFormatter() -> void -MessagePack.Formatters.NonGenericListFormatter.Serialize(ref MessagePack.MessagePackWriter writer, T? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.NullableBooleanFormatter -MessagePack.Formatters.NullableBooleanFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> bool? -MessagePack.Formatters.NullableBooleanFormatter.Serialize(ref MessagePack.MessagePackWriter writer, bool? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.NullableByteFormatter -MessagePack.Formatters.NullableByteFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> byte? -MessagePack.Formatters.NullableByteFormatter.Serialize(ref MessagePack.MessagePackWriter writer, byte? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.NullableCharFormatter -MessagePack.Formatters.NullableCharFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> char? -MessagePack.Formatters.NullableCharFormatter.Serialize(ref MessagePack.MessagePackWriter writer, char? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.NullableDateTimeFormatter -MessagePack.Formatters.NullableDateTimeFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> System.DateTime? -MessagePack.Formatters.NullableDateTimeFormatter.Serialize(ref MessagePack.MessagePackWriter writer, System.DateTime? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.NullableDoubleFormatter -MessagePack.Formatters.NullableDoubleFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> double? -MessagePack.Formatters.NullableDoubleFormatter.Serialize(ref MessagePack.MessagePackWriter writer, double? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.NullableForceByteBlockFormatter -MessagePack.Formatters.NullableForceByteBlockFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> byte? -MessagePack.Formatters.NullableForceByteBlockFormatter.Serialize(ref MessagePack.MessagePackWriter writer, byte? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.NullableForceInt16BlockFormatter -MessagePack.Formatters.NullableForceInt16BlockFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> short? -MessagePack.Formatters.NullableForceInt16BlockFormatter.Serialize(ref MessagePack.MessagePackWriter writer, short? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.NullableForceInt32BlockFormatter -MessagePack.Formatters.NullableForceInt32BlockFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> int? -MessagePack.Formatters.NullableForceInt32BlockFormatter.Serialize(ref MessagePack.MessagePackWriter writer, int? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.NullableForceInt64BlockFormatter -MessagePack.Formatters.NullableForceInt64BlockFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> long? -MessagePack.Formatters.NullableForceInt64BlockFormatter.Serialize(ref MessagePack.MessagePackWriter writer, long? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.NullableForceSByteBlockFormatter -MessagePack.Formatters.NullableForceSByteBlockFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> sbyte? -MessagePack.Formatters.NullableForceSByteBlockFormatter.Serialize(ref MessagePack.MessagePackWriter writer, sbyte? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.NullableForceUInt16BlockFormatter -MessagePack.Formatters.NullableForceUInt16BlockFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> ushort? -MessagePack.Formatters.NullableForceUInt16BlockFormatter.Serialize(ref MessagePack.MessagePackWriter writer, ushort? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.NullableForceUInt32BlockFormatter -MessagePack.Formatters.NullableForceUInt32BlockFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> uint? -MessagePack.Formatters.NullableForceUInt32BlockFormatter.Serialize(ref MessagePack.MessagePackWriter writer, uint? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.NullableForceUInt64BlockFormatter -MessagePack.Formatters.NullableForceUInt64BlockFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> ulong? -MessagePack.Formatters.NullableForceUInt64BlockFormatter.Serialize(ref MessagePack.MessagePackWriter writer, ulong? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.NullableFormatter -MessagePack.Formatters.NullableFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> T? -MessagePack.Formatters.NullableFormatter.NullableFormatter() -> void -MessagePack.Formatters.NullableFormatter.Serialize(ref MessagePack.MessagePackWriter writer, T? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.NullableInt16Formatter -MessagePack.Formatters.NullableInt16Formatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> short? -MessagePack.Formatters.NullableInt16Formatter.Serialize(ref MessagePack.MessagePackWriter writer, short? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.NullableInt32Formatter -MessagePack.Formatters.NullableInt32Formatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> int? -MessagePack.Formatters.NullableInt32Formatter.Serialize(ref MessagePack.MessagePackWriter writer, int? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.NullableInt64Formatter -MessagePack.Formatters.NullableInt64Formatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> long? -MessagePack.Formatters.NullableInt64Formatter.Serialize(ref MessagePack.MessagePackWriter writer, long? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.NullableNilFormatter -MessagePack.Formatters.NullableNilFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> MessagePack.Nil? -MessagePack.Formatters.NullableNilFormatter.Serialize(ref MessagePack.MessagePackWriter writer, MessagePack.Nil? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.NullableSByteFormatter -MessagePack.Formatters.NullableSByteFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> sbyte? -MessagePack.Formatters.NullableSByteFormatter.Serialize(ref MessagePack.MessagePackWriter writer, sbyte? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.NullableSingleFormatter -MessagePack.Formatters.NullableSingleFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> float? -MessagePack.Formatters.NullableSingleFormatter.Serialize(ref MessagePack.MessagePackWriter writer, float? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.NullableStringArrayFormatter -MessagePack.Formatters.NullableStringArrayFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> string?[]? -MessagePack.Formatters.NullableStringArrayFormatter.Serialize(ref MessagePack.MessagePackWriter writer, string?[]? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.NullableStringFormatter -MessagePack.Formatters.NullableStringFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> string? -MessagePack.Formatters.NullableStringFormatter.Serialize(ref MessagePack.MessagePackWriter writer, string? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.NullableUInt16Formatter -MessagePack.Formatters.NullableUInt16Formatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> ushort? -MessagePack.Formatters.NullableUInt16Formatter.Serialize(ref MessagePack.MessagePackWriter writer, ushort? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.NullableUInt32Formatter -MessagePack.Formatters.NullableUInt32Formatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> uint? -MessagePack.Formatters.NullableUInt32Formatter.Serialize(ref MessagePack.MessagePackWriter writer, uint? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.NullableUInt64Formatter -MessagePack.Formatters.NullableUInt64Formatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> ulong? -MessagePack.Formatters.NullableUInt64Formatter.Serialize(ref MessagePack.MessagePackWriter writer, ulong? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.ObservableCollectionFormatter -MessagePack.Formatters.ObservableCollectionFormatter.ObservableCollectionFormatter() -> void -MessagePack.Formatters.PrimitiveObjectFormatter -MessagePack.Formatters.PrimitiveObjectFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> object? -MessagePack.Formatters.PrimitiveObjectFormatter.Serialize(ref MessagePack.MessagePackWriter writer, object? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.QueueFormatter -MessagePack.Formatters.QueueFormatter.QueueFormatter() -> void -MessagePack.Formatters.ReadOnlyCollectionFormatter -MessagePack.Formatters.ReadOnlyCollectionFormatter.ReadOnlyCollectionFormatter() -> void -MessagePack.Formatters.ReadOnlyDictionaryFormatter -MessagePack.Formatters.ReadOnlyDictionaryFormatter.ReadOnlyDictionaryFormatter() -> void -MessagePack.Formatters.ReadOnlyObservableCollectionFormatter -MessagePack.Formatters.ReadOnlyObservableCollectionFormatter.ReadOnlyObservableCollectionFormatter() -> void -MessagePack.Formatters.SByteArrayFormatter -MessagePack.Formatters.SByteArrayFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> sbyte[]? -MessagePack.Formatters.SByteArrayFormatter.Serialize(ref MessagePack.MessagePackWriter writer, sbyte[]? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.SByteFormatter -MessagePack.Formatters.SByteFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> sbyte -MessagePack.Formatters.SByteFormatter.Serialize(ref MessagePack.MessagePackWriter writer, sbyte value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.SingleArrayFormatter -MessagePack.Formatters.SingleArrayFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> float[]? -MessagePack.Formatters.SingleArrayFormatter.Serialize(ref MessagePack.MessagePackWriter writer, float[]? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.SingleFormatter -MessagePack.Formatters.SingleFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> float -MessagePack.Formatters.SingleFormatter.Serialize(ref MessagePack.MessagePackWriter writer, float value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.SortedDictionaryFormatter -MessagePack.Formatters.SortedDictionaryFormatter.SortedDictionaryFormatter() -> void -MessagePack.Formatters.SortedListFormatter -MessagePack.Formatters.SortedListFormatter.SortedListFormatter() -> void -MessagePack.Formatters.StackFormatter -MessagePack.Formatters.StackFormatter.StackFormatter() -> void -MessagePack.Formatters.StaticNullableFormatter -MessagePack.Formatters.StaticNullableFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> T? -MessagePack.Formatters.StaticNullableFormatter.Serialize(ref MessagePack.MessagePackWriter writer, T? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.StaticNullableFormatter.StaticNullableFormatter(MessagePack.Formatters.IMessagePackFormatter! underlyingFormatter) -> void -MessagePack.Formatters.StringBuilderFormatter -MessagePack.Formatters.StringBuilderFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> System.Text.StringBuilder? -MessagePack.Formatters.StringBuilderFormatter.Serialize(ref MessagePack.MessagePackWriter writer, System.Text.StringBuilder? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.ThreeDimensionalArrayFormatter -MessagePack.Formatters.ThreeDimensionalArrayFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> T[,,]? -MessagePack.Formatters.ThreeDimensionalArrayFormatter.Serialize(ref MessagePack.MessagePackWriter writer, T[,,]? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.ThreeDimensionalArrayFormatter.ThreeDimensionalArrayFormatter() -> void -MessagePack.Formatters.TimeSpanFormatter -MessagePack.Formatters.TimeSpanFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> System.TimeSpan -MessagePack.Formatters.TimeSpanFormatter.Serialize(ref MessagePack.MessagePackWriter writer, System.TimeSpan value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.TupleFormatter -MessagePack.Formatters.TupleFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> System.Tuple? -MessagePack.Formatters.TupleFormatter.Serialize(ref MessagePack.MessagePackWriter writer, System.Tuple? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.TupleFormatter.TupleFormatter() -> void -MessagePack.Formatters.TupleFormatter -MessagePack.Formatters.TupleFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> System.Tuple? -MessagePack.Formatters.TupleFormatter.Serialize(ref MessagePack.MessagePackWriter writer, System.Tuple? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.TupleFormatter.TupleFormatter() -> void -MessagePack.Formatters.TupleFormatter -MessagePack.Formatters.TupleFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> System.Tuple? -MessagePack.Formatters.TupleFormatter.Serialize(ref MessagePack.MessagePackWriter writer, System.Tuple? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.TupleFormatter.TupleFormatter() -> void -MessagePack.Formatters.TupleFormatter -MessagePack.Formatters.TupleFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> System.Tuple? -MessagePack.Formatters.TupleFormatter.Serialize(ref MessagePack.MessagePackWriter writer, System.Tuple? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.TupleFormatter.TupleFormatter() -> void -MessagePack.Formatters.TupleFormatter -MessagePack.Formatters.TupleFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> System.Tuple? -MessagePack.Formatters.TupleFormatter.Serialize(ref MessagePack.MessagePackWriter writer, System.Tuple? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.TupleFormatter.TupleFormatter() -> void -MessagePack.Formatters.TupleFormatter -MessagePack.Formatters.TupleFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> System.Tuple? -MessagePack.Formatters.TupleFormatter.Serialize(ref MessagePack.MessagePackWriter writer, System.Tuple? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.TupleFormatter.TupleFormatter() -> void -MessagePack.Formatters.TupleFormatter -MessagePack.Formatters.TupleFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> System.Tuple? -MessagePack.Formatters.TupleFormatter.Serialize(ref MessagePack.MessagePackWriter writer, System.Tuple? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.TupleFormatter.TupleFormatter() -> void -MessagePack.Formatters.TupleFormatter -MessagePack.Formatters.TupleFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> System.Tuple? -MessagePack.Formatters.TupleFormatter.Serialize(ref MessagePack.MessagePackWriter writer, System.Tuple? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.TupleFormatter.TupleFormatter() -> void -MessagePack.Formatters.TwoDimensionalArrayFormatter -MessagePack.Formatters.TwoDimensionalArrayFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> T[,]? -MessagePack.Formatters.TwoDimensionalArrayFormatter.Serialize(ref MessagePack.MessagePackWriter writer, T[,]? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.TwoDimensionalArrayFormatter.TwoDimensionalArrayFormatter() -> void -MessagePack.Formatters.TypelessFormatter -MessagePack.Formatters.TypelessFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> object? -MessagePack.Formatters.TypelessFormatter.Serialize(ref MessagePack.MessagePackWriter writer, object? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.UInt16ArrayFormatter -MessagePack.Formatters.UInt16ArrayFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> ushort[]? -MessagePack.Formatters.UInt16ArrayFormatter.Serialize(ref MessagePack.MessagePackWriter writer, ushort[]? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.UInt16Formatter -MessagePack.Formatters.UInt16Formatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> ushort -MessagePack.Formatters.UInt16Formatter.Serialize(ref MessagePack.MessagePackWriter writer, ushort value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.UInt32ArrayFormatter -MessagePack.Formatters.UInt32ArrayFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> uint[]? -MessagePack.Formatters.UInt32ArrayFormatter.Serialize(ref MessagePack.MessagePackWriter writer, uint[]? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.UInt32Formatter -MessagePack.Formatters.UInt32Formatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> uint -MessagePack.Formatters.UInt32Formatter.Serialize(ref MessagePack.MessagePackWriter writer, uint value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.UInt64ArrayFormatter -MessagePack.Formatters.UInt64ArrayFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> ulong[]? -MessagePack.Formatters.UInt64ArrayFormatter.Serialize(ref MessagePack.MessagePackWriter writer, ulong[]? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.UInt64Formatter -MessagePack.Formatters.UInt64Formatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> ulong -MessagePack.Formatters.UInt64Formatter.Serialize(ref MessagePack.MessagePackWriter writer, ulong value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.UriFormatter -MessagePack.Formatters.UriFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> System.Uri? -MessagePack.Formatters.UriFormatter.Serialize(ref MessagePack.MessagePackWriter writer, System.Uri? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.ValueTupleFormatter -MessagePack.Formatters.ValueTupleFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> System.ValueTuple -MessagePack.Formatters.ValueTupleFormatter.Serialize(ref MessagePack.MessagePackWriter writer, System.ValueTuple value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.ValueTupleFormatter.ValueTupleFormatter() -> void -MessagePack.Formatters.ValueTupleFormatter -MessagePack.Formatters.ValueTupleFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> (T1, T2, T3, T4, T5, T6, T7) -MessagePack.Formatters.ValueTupleFormatter.Serialize(ref MessagePack.MessagePackWriter writer, (T1, T2, T3, T4, T5, T6, T7) value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.ValueTupleFormatter.ValueTupleFormatter() -> void -MessagePack.Formatters.ValueTupleFormatter -MessagePack.Formatters.ValueTupleFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> (T1, T2, T3, T4, T5, T6) -MessagePack.Formatters.ValueTupleFormatter.Serialize(ref MessagePack.MessagePackWriter writer, (T1, T2, T3, T4, T5, T6) value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.ValueTupleFormatter.ValueTupleFormatter() -> void -MessagePack.Formatters.ValueTupleFormatter -MessagePack.Formatters.ValueTupleFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> (T1, T2, T3, T4, T5) -MessagePack.Formatters.ValueTupleFormatter.Serialize(ref MessagePack.MessagePackWriter writer, (T1, T2, T3, T4, T5) value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.ValueTupleFormatter.ValueTupleFormatter() -> void -MessagePack.Formatters.ValueTupleFormatter -MessagePack.Formatters.ValueTupleFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> (T1, T2, T3, T4) -MessagePack.Formatters.ValueTupleFormatter.Serialize(ref MessagePack.MessagePackWriter writer, (T1, T2, T3, T4) value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.ValueTupleFormatter.ValueTupleFormatter() -> void -MessagePack.Formatters.ValueTupleFormatter -MessagePack.Formatters.ValueTupleFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> (T1, T2, T3) -MessagePack.Formatters.ValueTupleFormatter.Serialize(ref MessagePack.MessagePackWriter writer, (T1, T2, T3) value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.ValueTupleFormatter.ValueTupleFormatter() -> void -MessagePack.Formatters.ValueTupleFormatter -MessagePack.Formatters.ValueTupleFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> (T1, T2) -MessagePack.Formatters.ValueTupleFormatter.Serialize(ref MessagePack.MessagePackWriter writer, (T1, T2) value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.ValueTupleFormatter.ValueTupleFormatter() -> void -MessagePack.Formatters.ValueTupleFormatter -MessagePack.Formatters.ValueTupleFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> System.ValueTuple -MessagePack.Formatters.ValueTupleFormatter.Serialize(ref MessagePack.MessagePackWriter writer, System.ValueTuple value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.ValueTupleFormatter.ValueTupleFormatter() -> void -MessagePack.Formatters.VersionFormatter -MessagePack.Formatters.VersionFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> System.Version? -MessagePack.Formatters.VersionFormatter.Serialize(ref MessagePack.MessagePackWriter writer, System.Version? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.IFormatterResolver -MessagePack.IFormatterResolver.GetFormatter() -> MessagePack.Formatters.IMessagePackFormatter? -MessagePack.Internal.AutomataDictionary -MessagePack.Internal.AutomataDictionary.Add(string! str, int value) -> void -MessagePack.Internal.AutomataDictionary.AutomataDictionary() -> void -MessagePack.Internal.AutomataDictionary.EmitMatch(System.Reflection.Emit.ILGenerator! il, System.Reflection.Emit.LocalBuilder! bytesSpan, System.Reflection.Emit.LocalBuilder! key, System.Action>! onFound, System.Action! onNotFound) -> void -MessagePack.Internal.AutomataDictionary.GetEnumerator() -> System.Collections.Generic.IEnumerator>! -MessagePack.Internal.AutomataDictionary.TryGetValue(System.ReadOnlySpan bytes, out int value) -> bool -MessagePack.Internal.AutomataDictionary.TryGetValue(in System.Buffers.ReadOnlySequence bytes, out int value) -> bool -MessagePack.Internal.AutomataKeyGen -MessagePack.Internal.ByteArrayStringHashTable -MessagePack.Internal.ByteArrayStringHashTable.Add(byte[]! key, int value) -> void -MessagePack.Internal.ByteArrayStringHashTable.Add(string! key, int value) -> void -MessagePack.Internal.ByteArrayStringHashTable.ByteArrayStringHashTable(int capacity) -> void -MessagePack.Internal.ByteArrayStringHashTable.ByteArrayStringHashTable(int capacity, float loadFactor) -> void -MessagePack.Internal.ByteArrayStringHashTable.GetEnumerator() -> System.Collections.Generic.IEnumerator>! -MessagePack.Internal.ByteArrayStringHashTable.TryGetValue(System.ReadOnlySpan key, out int value) -> bool -MessagePack.Internal.ByteArrayStringHashTable.TryGetValue(in System.Buffers.ReadOnlySequence key, out int value) -> bool -MessagePack.Internal.CodeGenHelpers -MessagePack.Internal.RuntimeTypeHandleEqualityComparer -MessagePack.Internal.RuntimeTypeHandleEqualityComparer.Equals(System.RuntimeTypeHandle x, System.RuntimeTypeHandle y) -> bool -MessagePack.Internal.RuntimeTypeHandleEqualityComparer.GetHashCode(System.RuntimeTypeHandle obj) -> int -MessagePack.Internal.UnsafeMemory -MessagePack.Internal.UnsafeMemory32 -MessagePack.Internal.UnsafeMemory64 -MessagePack.MessagePackCode -MessagePack.MessagePackCompression -MessagePack.MessagePackCompression.Lz4Block = 1 -> MessagePack.MessagePackCompression -MessagePack.MessagePackCompression.Lz4BlockArray = 2 -> MessagePack.MessagePackCompression -MessagePack.MessagePackCompression.None = 0 -> MessagePack.MessagePackCompression -MessagePack.MessagePackRange -MessagePack.MessagePackReader -MessagePack.MessagePackReader.CancellationToken.get -> System.Threading.CancellationToken -MessagePack.MessagePackReader.CancellationToken.set -> void -MessagePack.MessagePackReader.Clone(scoped in System.Buffers.ReadOnlySequence readOnlySequence) -> MessagePack.MessagePackReader -MessagePack.MessagePackReader.Consumed.get -> long -MessagePack.MessagePackReader.CreatePeekReader() -> MessagePack.MessagePackReader -MessagePack.MessagePackReader.End.get -> bool -MessagePack.MessagePackReader.IsNil.get -> bool -MessagePack.MessagePackReader.MessagePackReader(System.ReadOnlyMemory memory) -> void -MessagePack.MessagePackReader.MessagePackReader(scoped in System.Buffers.ReadOnlySequence readOnlySequence) -> void -MessagePack.MessagePackReader.NextCode.get -> byte -MessagePack.MessagePackReader.NextMessagePackType.get -> MessagePack.MessagePackType -MessagePack.MessagePackReader.Position.get -> System.SequencePosition -MessagePack.MessagePackReader.ReadArrayHeader() -> int -MessagePack.MessagePackReader.ReadBoolean() -> bool -MessagePack.MessagePackReader.ReadByte() -> byte -MessagePack.MessagePackReader.ReadBytes() -> System.Buffers.ReadOnlySequence? -MessagePack.MessagePackReader.ReadChar() -> char -MessagePack.MessagePackReader.ReadDateTime() -> System.DateTime -MessagePack.MessagePackReader.ReadDouble() -> double -MessagePack.MessagePackReader.ReadExtensionFormat() -> MessagePack.ExtensionResult -MessagePack.MessagePackReader.ReadExtensionFormatHeader() -> MessagePack.ExtensionHeader -MessagePack.MessagePackReader.ReadInt16() -> short -MessagePack.MessagePackReader.ReadInt32() -> int -MessagePack.MessagePackReader.ReadInt64() -> long -MessagePack.MessagePackReader.ReadMapHeader() -> int -MessagePack.MessagePackReader.ReadNil() -> MessagePack.Nil -MessagePack.MessagePackReader.ReadRaw() -> System.Buffers.ReadOnlySequence -MessagePack.MessagePackReader.ReadRaw(long length) -> System.Buffers.ReadOnlySequence -MessagePack.MessagePackReader.ReadSByte() -> sbyte -MessagePack.MessagePackReader.ReadSingle() -> float -MessagePack.MessagePackReader.ReadString() -> string? -MessagePack.MessagePackReader.ReadStringSequence() -> System.Buffers.ReadOnlySequence? -MessagePack.MessagePackReader.ReadUInt16() -> ushort -MessagePack.MessagePackReader.ReadUInt32() -> uint -MessagePack.MessagePackReader.ReadUInt64() -> ulong -MessagePack.MessagePackReader.Sequence.get -> System.Buffers.ReadOnlySequence -MessagePack.MessagePackReader.Skip() -> void -MessagePack.MessagePackReader.TryReadNil() -> bool -MessagePack.MessagePackReader.TryReadStringSpan(out System.ReadOnlySpan span) -> bool -MessagePack.MessagePackSerializationException -MessagePack.MessagePackSerializationException.MessagePackSerializationException() -> void -MessagePack.MessagePackSerializationException.MessagePackSerializationException(System.Runtime.Serialization.SerializationInfo! info, System.Runtime.Serialization.StreamingContext context) -> void -MessagePack.MessagePackSerializationException.MessagePackSerializationException(string? message) -> void -MessagePack.MessagePackSerializationException.MessagePackSerializationException(string? message, System.Exception? inner) -> void -MessagePack.MessagePackSerializer -MessagePack.MessagePackSerializer.Typeless -MessagePack.MessagePackSerializerOptions -MessagePack.MessagePackSerializerOptions.AllowAssemblyVersionMismatch.get -> bool -MessagePack.MessagePackSerializerOptions.Compression.get -> MessagePack.MessagePackCompression -MessagePack.MessagePackSerializerOptions.MessagePackSerializerOptions(MessagePack.IFormatterResolver! resolver) -> void -MessagePack.MessagePackSerializerOptions.MessagePackSerializerOptions(MessagePack.MessagePackSerializerOptions! copyFrom) -> void -MessagePack.MessagePackSerializerOptions.OldSpec.get -> bool? -MessagePack.MessagePackSerializerOptions.OmitAssemblyVersion.get -> bool -MessagePack.MessagePackSerializerOptions.Resolver.get -> MessagePack.IFormatterResolver! -MessagePack.MessagePackSerializerOptions.WithAllowAssemblyVersionMismatch(bool allowAssemblyVersionMismatch) -> MessagePack.MessagePackSerializerOptions! -MessagePack.MessagePackSerializerOptions.WithCompression(MessagePack.MessagePackCompression compression) -> MessagePack.MessagePackSerializerOptions! -MessagePack.MessagePackSerializerOptions.WithOldSpec(bool? oldSpec = true) -> MessagePack.MessagePackSerializerOptions! -MessagePack.MessagePackSerializerOptions.WithOmitAssemblyVersion(bool omitAssemblyVersion) -> MessagePack.MessagePackSerializerOptions! -MessagePack.MessagePackSerializerOptions.WithResolver(MessagePack.IFormatterResolver! resolver) -> MessagePack.MessagePackSerializerOptions! -MessagePack.MessagePackStreamReader -MessagePack.MessagePackStreamReader.Dispose() -> void -MessagePack.MessagePackStreamReader.MessagePackStreamReader(System.IO.Stream! stream) -> void -MessagePack.MessagePackStreamReader.ReadAsync(System.Threading.CancellationToken cancellationToken) -> System.Threading.Tasks.ValueTask?> -MessagePack.MessagePackStreamReader.RemainingBytes.get -> System.Buffers.ReadOnlySequence -MessagePack.MessagePackType -MessagePack.MessagePackType.Array = 7 -> MessagePack.MessagePackType -MessagePack.MessagePackType.Binary = 6 -> MessagePack.MessagePackType -MessagePack.MessagePackType.Boolean = 3 -> MessagePack.MessagePackType -MessagePack.MessagePackType.Extension = 9 -> MessagePack.MessagePackType -MessagePack.MessagePackType.Float = 4 -> MessagePack.MessagePackType -MessagePack.MessagePackType.Integer = 1 -> MessagePack.MessagePackType -MessagePack.MessagePackType.Map = 8 -> MessagePack.MessagePackType -MessagePack.MessagePackType.Nil = 2 -> MessagePack.MessagePackType -MessagePack.MessagePackType.String = 5 -> MessagePack.MessagePackType -MessagePack.MessagePackType.Unknown = 0 -> MessagePack.MessagePackType -MessagePack.MessagePackWriter -MessagePack.MessagePackWriter.Advance(int length) -> void -MessagePack.MessagePackWriter.CancellationToken.get -> System.Threading.CancellationToken -MessagePack.MessagePackWriter.CancellationToken.set -> void -MessagePack.MessagePackWriter.Clone(System.Buffers.IBufferWriter! writer) -> MessagePack.MessagePackWriter -MessagePack.MessagePackWriter.Flush() -> void -MessagePack.MessagePackWriter.GetSpan(int length) -> System.Span -MessagePack.MessagePackWriter.MessagePackWriter(System.Buffers.IBufferWriter! writer) -> void -MessagePack.MessagePackWriter.OldSpec.get -> bool -MessagePack.MessagePackWriter.OldSpec.set -> void -MessagePack.MessagePackWriter.Write(System.DateTime dateTime) -> void -MessagePack.MessagePackWriter.Write(System.ReadOnlySpan src) -> void -MessagePack.MessagePackWriter.Write(System.ReadOnlySpan value) -> void -MessagePack.MessagePackWriter.Write(bool value) -> void -MessagePack.MessagePackWriter.Write(byte value) -> void -MessagePack.MessagePackWriter.Write(byte[]? src) -> void -MessagePack.MessagePackWriter.Write(char value) -> void -MessagePack.MessagePackWriter.Write(double value) -> void -MessagePack.MessagePackWriter.Write(float value) -> void -MessagePack.MessagePackWriter.Write(in System.Buffers.ReadOnlySequence src) -> void -MessagePack.MessagePackWriter.Write(int value) -> void -MessagePack.MessagePackWriter.Write(long value) -> void -MessagePack.MessagePackWriter.Write(sbyte value) -> void -MessagePack.MessagePackWriter.Write(short value) -> void -MessagePack.MessagePackWriter.Write(string? value) -> void -MessagePack.MessagePackWriter.Write(uint value) -> void -MessagePack.MessagePackWriter.Write(ulong value) -> void -MessagePack.MessagePackWriter.Write(ushort value) -> void -MessagePack.MessagePackWriter.WriteArrayHeader(int count) -> void -MessagePack.MessagePackWriter.WriteArrayHeader(uint count) -> void -MessagePack.MessagePackWriter.WriteExtensionFormat(MessagePack.ExtensionResult extensionData) -> void -MessagePack.MessagePackWriter.WriteExtensionFormatHeader(MessagePack.ExtensionHeader extensionHeader) -> void -MessagePack.MessagePackWriter.WriteInt16(short value) -> void -MessagePack.MessagePackWriter.WriteInt32(int value) -> void -MessagePack.MessagePackWriter.WriteInt64(long value) -> void -MessagePack.MessagePackWriter.WriteInt8(sbyte value) -> void -MessagePack.MessagePackWriter.WriteMapHeader(int count) -> void -MessagePack.MessagePackWriter.WriteMapHeader(uint count) -> void -MessagePack.MessagePackWriter.WriteNil() -> void -MessagePack.MessagePackWriter.WriteRaw(System.ReadOnlySpan rawMessagePackBlock) -> void -MessagePack.MessagePackWriter.WriteRaw(in System.Buffers.ReadOnlySequence rawMessagePackBlock) -> void -MessagePack.MessagePackWriter.WriteString(System.ReadOnlySpan utf8stringBytes) -> void -MessagePack.MessagePackWriter.WriteString(in System.Buffers.ReadOnlySequence utf8stringBytes) -> void -MessagePack.MessagePackWriter.WriteUInt16(ushort value) -> void -MessagePack.MessagePackWriter.WriteUInt32(uint value) -> void -MessagePack.MessagePackWriter.WriteUInt64(ulong value) -> void -MessagePack.MessagePackWriter.WriteUInt8(byte value) -> void -MessagePack.Nil -MessagePack.Nil.Equals(MessagePack.Nil other) -> bool -MessagePack.Nil.Nil() -> void -MessagePack.ReservedMessagePackExtensionTypeCode -MessagePack.Resolvers.AttributeFormatterResolver -MessagePack.Resolvers.AttributeFormatterResolver.GetFormatter() -> MessagePack.Formatters.IMessagePackFormatter? -MessagePack.Resolvers.BuiltinResolver -MessagePack.Resolvers.BuiltinResolver.GetFormatter() -> MessagePack.Formatters.IMessagePackFormatter? -MessagePack.Resolvers.CompositeResolver -MessagePack.Resolvers.ContractlessStandardResolver -MessagePack.Resolvers.ContractlessStandardResolver.GetFormatter() -> MessagePack.Formatters.IMessagePackFormatter? -MessagePack.Resolvers.ContractlessStandardResolverAllowPrivate -MessagePack.Resolvers.ContractlessStandardResolverAllowPrivate.GetFormatter() -> MessagePack.Formatters.IMessagePackFormatter? -MessagePack.Resolvers.DynamicContractlessObjectResolver -MessagePack.Resolvers.DynamicContractlessObjectResolver.GetFormatter() -> MessagePack.Formatters.IMessagePackFormatter? -MessagePack.Resolvers.DynamicContractlessObjectResolverAllowPrivate -MessagePack.Resolvers.DynamicContractlessObjectResolverAllowPrivate.DynamicContractlessObjectResolverAllowPrivate() -> void -MessagePack.Resolvers.DynamicContractlessObjectResolverAllowPrivate.GetFormatter() -> MessagePack.Formatters.IMessagePackFormatter? -MessagePack.Resolvers.DynamicEnumAsStringResolver -MessagePack.Resolvers.DynamicEnumAsStringResolver.GetFormatter() -> MessagePack.Formatters.IMessagePackFormatter? -MessagePack.Resolvers.DynamicEnumResolver -MessagePack.Resolvers.DynamicEnumResolver.GetFormatter() -> MessagePack.Formatters.IMessagePackFormatter? -MessagePack.Resolvers.DynamicGenericResolver -MessagePack.Resolvers.DynamicGenericResolver.GetFormatter() -> MessagePack.Formatters.IMessagePackFormatter? -MessagePack.Resolvers.DynamicObjectResolver -MessagePack.Resolvers.DynamicObjectResolver.GetFormatter() -> MessagePack.Formatters.IMessagePackFormatter? -MessagePack.Resolvers.DynamicObjectResolverAllowPrivate -MessagePack.Resolvers.DynamicObjectResolverAllowPrivate.GetFormatter() -> MessagePack.Formatters.IMessagePackFormatter? -MessagePack.Resolvers.DynamicUnionResolver -MessagePack.Resolvers.DynamicUnionResolver.GetFormatter() -> MessagePack.Formatters.IMessagePackFormatter? -MessagePack.Resolvers.NativeDateTimeResolver -MessagePack.Resolvers.NativeDateTimeResolver.GetFormatter() -> MessagePack.Formatters.IMessagePackFormatter? -MessagePack.Resolvers.NativeDecimalResolver -MessagePack.Resolvers.NativeDecimalResolver.GetFormatter() -> MessagePack.Formatters.IMessagePackFormatter? -MessagePack.Resolvers.NativeGuidResolver -MessagePack.Resolvers.NativeGuidResolver.GetFormatter() -> MessagePack.Formatters.IMessagePackFormatter? -MessagePack.Resolvers.PrimitiveObjectResolver -MessagePack.Resolvers.PrimitiveObjectResolver.GetFormatter() -> MessagePack.Formatters.IMessagePackFormatter? -MessagePack.Resolvers.StandardResolver -MessagePack.Resolvers.StandardResolver.GetFormatter() -> MessagePack.Formatters.IMessagePackFormatter? -MessagePack.Resolvers.StandardResolverAllowPrivate -MessagePack.Resolvers.StandardResolverAllowPrivate.GetFormatter() -> MessagePack.Formatters.IMessagePackFormatter? -MessagePack.Resolvers.StaticCompositeResolver -MessagePack.Resolvers.StaticCompositeResolver.GetFormatter() -> MessagePack.Formatters.IMessagePackFormatter? -MessagePack.Resolvers.StaticCompositeResolver.Register(System.Collections.Generic.IReadOnlyList! formatters, System.Collections.Generic.IReadOnlyList! resolvers) -> void -MessagePack.Resolvers.StaticCompositeResolver.Register(params MessagePack.Formatters.IMessagePackFormatter![]! formatters) -> void -MessagePack.Resolvers.StaticCompositeResolver.Register(params MessagePack.IFormatterResolver![]! resolvers) -> void -MessagePack.Resolvers.TypelessContractlessStandardResolver -MessagePack.Resolvers.TypelessContractlessStandardResolver.GetFormatter() -> MessagePack.Formatters.IMessagePackFormatter? -MessagePack.Resolvers.TypelessContractlessStandardResolver.TypelessContractlessStandardResolver() -> void -MessagePack.Resolvers.TypelessObjectResolver -MessagePack.Resolvers.TypelessObjectResolver.GetFormatter() -> MessagePack.Formatters.IMessagePackFormatter? -MessagePack.TinyJsonException -MessagePack.TinyJsonException.TinyJsonException(string! message) -> void -abstract MessagePack.Formatters.CollectionFormatterBase.Add(TIntermediate collection, int index, TElement value, MessagePack.MessagePackSerializerOptions! options) -> void -abstract MessagePack.Formatters.CollectionFormatterBase.Complete(TIntermediate intermediateCollection) -> TCollection -abstract MessagePack.Formatters.CollectionFormatterBase.Create(int count, MessagePack.MessagePackSerializerOptions! options) -> TIntermediate -abstract MessagePack.Formatters.CollectionFormatterBase.GetSourceEnumerator(TCollection source) -> TEnumerator -abstract MessagePack.Formatters.DictionaryFormatterBase.Add(TIntermediate collection, int index, TKey key, TValue value, MessagePack.MessagePackSerializerOptions! options) -> void -abstract MessagePack.Formatters.DictionaryFormatterBase.Complete(TIntermediate intermediateCollection) -> TDictionary! -abstract MessagePack.Formatters.DictionaryFormatterBase.Create(int count, MessagePack.MessagePackSerializerOptions! options) -> TIntermediate -abstract MessagePack.Formatters.DictionaryFormatterBase.GetSourceEnumerator(TDictionary! source) -> TEnumerator -const MessagePack.MessagePackCode.Array16 = 220 -> byte -const MessagePack.MessagePackCode.Array32 = 221 -> byte -const MessagePack.MessagePackCode.Bin16 = 197 -> byte -const MessagePack.MessagePackCode.Bin32 = 198 -> byte -const MessagePack.MessagePackCode.Bin8 = 196 -> byte -const MessagePack.MessagePackCode.Ext16 = 200 -> byte -const MessagePack.MessagePackCode.Ext32 = 201 -> byte -const MessagePack.MessagePackCode.Ext8 = 199 -> byte -const MessagePack.MessagePackCode.False = 194 -> byte -const MessagePack.MessagePackCode.FixExt1 = 212 -> byte -const MessagePack.MessagePackCode.FixExt16 = 216 -> byte -const MessagePack.MessagePackCode.FixExt2 = 213 -> byte -const MessagePack.MessagePackCode.FixExt4 = 214 -> byte -const MessagePack.MessagePackCode.FixExt8 = 215 -> byte -const MessagePack.MessagePackCode.Float32 = 202 -> byte -const MessagePack.MessagePackCode.Float64 = 203 -> byte -const MessagePack.MessagePackCode.Int16 = 209 -> byte -const MessagePack.MessagePackCode.Int32 = 210 -> byte -const MessagePack.MessagePackCode.Int64 = 211 -> byte -const MessagePack.MessagePackCode.Int8 = 208 -> byte -const MessagePack.MessagePackCode.Map16 = 222 -> byte -const MessagePack.MessagePackCode.Map32 = 223 -> byte -const MessagePack.MessagePackCode.MaxFixArray = 159 -> byte -const MessagePack.MessagePackCode.MaxFixInt = 127 -> byte -const MessagePack.MessagePackCode.MaxFixMap = 143 -> byte -const MessagePack.MessagePackCode.MaxFixStr = 191 -> byte -const MessagePack.MessagePackCode.MaxNegativeFixInt = 255 -> byte -const MessagePack.MessagePackCode.MinFixArray = 144 -> byte -const MessagePack.MessagePackCode.MinFixInt = 0 -> byte -const MessagePack.MessagePackCode.MinFixMap = 128 -> byte -const MessagePack.MessagePackCode.MinFixStr = 160 -> byte -const MessagePack.MessagePackCode.MinNegativeFixInt = 224 -> byte -const MessagePack.MessagePackCode.NeverUsed = 193 -> byte -const MessagePack.MessagePackCode.Nil = 192 -> byte -const MessagePack.MessagePackCode.Str16 = 218 -> byte -const MessagePack.MessagePackCode.Str32 = 219 -> byte -const MessagePack.MessagePackCode.Str8 = 217 -> byte -const MessagePack.MessagePackCode.True = 195 -> byte -const MessagePack.MessagePackCode.UInt16 = 205 -> byte -const MessagePack.MessagePackCode.UInt32 = 206 -> byte -const MessagePack.MessagePackCode.UInt64 = 207 -> byte -const MessagePack.MessagePackCode.UInt8 = 204 -> byte -const MessagePack.MessagePackRange.MaxFixArrayCount = 15 -> int -const MessagePack.MessagePackRange.MaxFixMapCount = 15 -> int -const MessagePack.MessagePackRange.MaxFixNegativeInt = -1 -> int -const MessagePack.MessagePackRange.MaxFixPositiveInt = 127 -> int -const MessagePack.MessagePackRange.MaxFixStringLength = 31 -> int -const MessagePack.MessagePackRange.MinFixNegativeInt = -32 -> int -const MessagePack.MessagePackRange.MinFixStringLength = 0 -> int -const MessagePack.ReservedMessagePackExtensionTypeCode.DateTime = -1 -> sbyte -override MessagePack.Formatters.CollectionFormatterBase.GetSourceEnumerator(TCollection source) -> System.Collections.Generic.IEnumerator! -override MessagePack.Formatters.DictionaryFormatterBase.Complete(TDictionary! intermediateCollection) -> TDictionary! -override MessagePack.Formatters.DictionaryFormatterBase.GetSourceEnumerator(TDictionary! source) -> System.Collections.Generic.IEnumerator>! -override MessagePack.Internal.AutomataDictionary.ToString() -> string! -override MessagePack.Nil.Equals(object? obj) -> bool -override MessagePack.Nil.GetHashCode() -> int -override MessagePack.Nil.ToString() -> string! -override sealed MessagePack.Formatters.CollectionFormatterBase.Complete(TCollection intermediateCollection) -> TCollection -static MessagePack.FormatterResolverExtensions.GetFormatterDynamic(this MessagePack.IFormatterResolver! resolver, System.Type! type) -> object? -static MessagePack.FormatterResolverExtensions.GetFormatterWithVerify(this MessagePack.IFormatterResolver! resolver) -> MessagePack.Formatters.IMessagePackFormatter! -static MessagePack.Formatters.PrimitiveObjectFormatter.IsSupportedType(System.Type! type, System.Reflection.TypeInfo! typeInfo, object! value) -> bool -static MessagePack.Internal.AutomataKeyGen.GetKey(ref System.ReadOnlySpan span) -> ulong -static MessagePack.Internal.CodeGenHelpers.GetArrayFromNullableSequence(in System.Buffers.ReadOnlySequence? sequence) -> byte[]? -static MessagePack.Internal.CodeGenHelpers.GetEncodedStringBytes(string! value) -> byte[]! -static MessagePack.Internal.CodeGenHelpers.GetSpanFromSequence(scoped in System.Buffers.ReadOnlySequence sequence) -> System.ReadOnlySpan -static MessagePack.Internal.CodeGenHelpers.ReadStringSpan(scoped ref MessagePack.MessagePackReader reader) -> System.ReadOnlySpan -static MessagePack.Internal.UnsafeMemory32.WriteRaw1(ref MessagePack.MessagePackWriter writer, System.ReadOnlySpan src) -> void -static MessagePack.Internal.UnsafeMemory32.WriteRaw10(ref MessagePack.MessagePackWriter writer, System.ReadOnlySpan src) -> void -static MessagePack.Internal.UnsafeMemory32.WriteRaw11(ref MessagePack.MessagePackWriter writer, System.ReadOnlySpan src) -> void -static MessagePack.Internal.UnsafeMemory32.WriteRaw12(ref MessagePack.MessagePackWriter writer, System.ReadOnlySpan src) -> void -static MessagePack.Internal.UnsafeMemory32.WriteRaw13(ref MessagePack.MessagePackWriter writer, System.ReadOnlySpan src) -> void -static MessagePack.Internal.UnsafeMemory32.WriteRaw14(ref MessagePack.MessagePackWriter writer, System.ReadOnlySpan src) -> void -static MessagePack.Internal.UnsafeMemory32.WriteRaw15(ref MessagePack.MessagePackWriter writer, System.ReadOnlySpan src) -> void -static MessagePack.Internal.UnsafeMemory32.WriteRaw16(ref MessagePack.MessagePackWriter writer, System.ReadOnlySpan src) -> void -static MessagePack.Internal.UnsafeMemory32.WriteRaw17(ref MessagePack.MessagePackWriter writer, System.ReadOnlySpan src) -> void -static MessagePack.Internal.UnsafeMemory32.WriteRaw18(ref MessagePack.MessagePackWriter writer, System.ReadOnlySpan src) -> void -static MessagePack.Internal.UnsafeMemory32.WriteRaw19(ref MessagePack.MessagePackWriter writer, System.ReadOnlySpan src) -> void -static MessagePack.Internal.UnsafeMemory32.WriteRaw2(ref MessagePack.MessagePackWriter writer, System.ReadOnlySpan src) -> void -static MessagePack.Internal.UnsafeMemory32.WriteRaw20(ref MessagePack.MessagePackWriter writer, System.ReadOnlySpan src) -> void -static MessagePack.Internal.UnsafeMemory32.WriteRaw21(ref MessagePack.MessagePackWriter writer, System.ReadOnlySpan src) -> void -static MessagePack.Internal.UnsafeMemory32.WriteRaw22(ref MessagePack.MessagePackWriter writer, System.ReadOnlySpan src) -> void -static MessagePack.Internal.UnsafeMemory32.WriteRaw23(ref MessagePack.MessagePackWriter writer, System.ReadOnlySpan src) -> void -static MessagePack.Internal.UnsafeMemory32.WriteRaw24(ref MessagePack.MessagePackWriter writer, System.ReadOnlySpan src) -> void -static MessagePack.Internal.UnsafeMemory32.WriteRaw25(ref MessagePack.MessagePackWriter writer, System.ReadOnlySpan src) -> void -static MessagePack.Internal.UnsafeMemory32.WriteRaw26(ref MessagePack.MessagePackWriter writer, System.ReadOnlySpan src) -> void -static MessagePack.Internal.UnsafeMemory32.WriteRaw27(ref MessagePack.MessagePackWriter writer, System.ReadOnlySpan src) -> void -static MessagePack.Internal.UnsafeMemory32.WriteRaw28(ref MessagePack.MessagePackWriter writer, System.ReadOnlySpan src) -> void -static MessagePack.Internal.UnsafeMemory32.WriteRaw29(ref MessagePack.MessagePackWriter writer, System.ReadOnlySpan src) -> void -static MessagePack.Internal.UnsafeMemory32.WriteRaw3(ref MessagePack.MessagePackWriter writer, System.ReadOnlySpan src) -> void -static MessagePack.Internal.UnsafeMemory32.WriteRaw30(ref MessagePack.MessagePackWriter writer, System.ReadOnlySpan src) -> void -static MessagePack.Internal.UnsafeMemory32.WriteRaw31(ref MessagePack.MessagePackWriter writer, System.ReadOnlySpan src) -> void -static MessagePack.Internal.UnsafeMemory32.WriteRaw4(ref MessagePack.MessagePackWriter writer, System.ReadOnlySpan src) -> void -static MessagePack.Internal.UnsafeMemory32.WriteRaw5(ref MessagePack.MessagePackWriter writer, System.ReadOnlySpan src) -> void -static MessagePack.Internal.UnsafeMemory32.WriteRaw6(ref MessagePack.MessagePackWriter writer, System.ReadOnlySpan src) -> void -static MessagePack.Internal.UnsafeMemory32.WriteRaw7(ref MessagePack.MessagePackWriter writer, System.ReadOnlySpan src) -> void -static MessagePack.Internal.UnsafeMemory32.WriteRaw8(ref MessagePack.MessagePackWriter writer, System.ReadOnlySpan src) -> void -static MessagePack.Internal.UnsafeMemory32.WriteRaw9(ref MessagePack.MessagePackWriter writer, System.ReadOnlySpan src) -> void -static MessagePack.Internal.UnsafeMemory64.WriteRaw1(ref MessagePack.MessagePackWriter writer, System.ReadOnlySpan src) -> void -static MessagePack.Internal.UnsafeMemory64.WriteRaw10(ref MessagePack.MessagePackWriter writer, System.ReadOnlySpan src) -> void -static MessagePack.Internal.UnsafeMemory64.WriteRaw11(ref MessagePack.MessagePackWriter writer, System.ReadOnlySpan src) -> void -static MessagePack.Internal.UnsafeMemory64.WriteRaw12(ref MessagePack.MessagePackWriter writer, System.ReadOnlySpan src) -> void -static MessagePack.Internal.UnsafeMemory64.WriteRaw13(ref MessagePack.MessagePackWriter writer, System.ReadOnlySpan src) -> void -static MessagePack.Internal.UnsafeMemory64.WriteRaw14(ref MessagePack.MessagePackWriter writer, System.ReadOnlySpan src) -> void -static MessagePack.Internal.UnsafeMemory64.WriteRaw15(ref MessagePack.MessagePackWriter writer, System.ReadOnlySpan src) -> void -static MessagePack.Internal.UnsafeMemory64.WriteRaw16(ref MessagePack.MessagePackWriter writer, System.ReadOnlySpan src) -> void -static MessagePack.Internal.UnsafeMemory64.WriteRaw17(ref MessagePack.MessagePackWriter writer, System.ReadOnlySpan src) -> void -static MessagePack.Internal.UnsafeMemory64.WriteRaw18(ref MessagePack.MessagePackWriter writer, System.ReadOnlySpan src) -> void -static MessagePack.Internal.UnsafeMemory64.WriteRaw19(ref MessagePack.MessagePackWriter writer, System.ReadOnlySpan src) -> void -static MessagePack.Internal.UnsafeMemory64.WriteRaw2(ref MessagePack.MessagePackWriter writer, System.ReadOnlySpan src) -> void -static MessagePack.Internal.UnsafeMemory64.WriteRaw20(ref MessagePack.MessagePackWriter writer, System.ReadOnlySpan src) -> void -static MessagePack.Internal.UnsafeMemory64.WriteRaw21(ref MessagePack.MessagePackWriter writer, System.ReadOnlySpan src) -> void -static MessagePack.Internal.UnsafeMemory64.WriteRaw22(ref MessagePack.MessagePackWriter writer, System.ReadOnlySpan src) -> void -static MessagePack.Internal.UnsafeMemory64.WriteRaw23(ref MessagePack.MessagePackWriter writer, System.ReadOnlySpan src) -> void -static MessagePack.Internal.UnsafeMemory64.WriteRaw24(ref MessagePack.MessagePackWriter writer, System.ReadOnlySpan src) -> void -static MessagePack.Internal.UnsafeMemory64.WriteRaw25(ref MessagePack.MessagePackWriter writer, System.ReadOnlySpan src) -> void -static MessagePack.Internal.UnsafeMemory64.WriteRaw26(ref MessagePack.MessagePackWriter writer, System.ReadOnlySpan src) -> void -static MessagePack.Internal.UnsafeMemory64.WriteRaw27(ref MessagePack.MessagePackWriter writer, System.ReadOnlySpan src) -> void -static MessagePack.Internal.UnsafeMemory64.WriteRaw28(ref MessagePack.MessagePackWriter writer, System.ReadOnlySpan src) -> void -static MessagePack.Internal.UnsafeMemory64.WriteRaw29(ref MessagePack.MessagePackWriter writer, System.ReadOnlySpan src) -> void -static MessagePack.Internal.UnsafeMemory64.WriteRaw3(ref MessagePack.MessagePackWriter writer, System.ReadOnlySpan src) -> void -static MessagePack.Internal.UnsafeMemory64.WriteRaw30(ref MessagePack.MessagePackWriter writer, System.ReadOnlySpan src) -> void -static MessagePack.Internal.UnsafeMemory64.WriteRaw31(ref MessagePack.MessagePackWriter writer, System.ReadOnlySpan src) -> void -static MessagePack.Internal.UnsafeMemory64.WriteRaw4(ref MessagePack.MessagePackWriter writer, System.ReadOnlySpan src) -> void -static MessagePack.Internal.UnsafeMemory64.WriteRaw5(ref MessagePack.MessagePackWriter writer, System.ReadOnlySpan src) -> void -static MessagePack.Internal.UnsafeMemory64.WriteRaw6(ref MessagePack.MessagePackWriter writer, System.ReadOnlySpan src) -> void -static MessagePack.Internal.UnsafeMemory64.WriteRaw7(ref MessagePack.MessagePackWriter writer, System.ReadOnlySpan src) -> void -static MessagePack.Internal.UnsafeMemory64.WriteRaw8(ref MessagePack.MessagePackWriter writer, System.ReadOnlySpan src) -> void -static MessagePack.Internal.UnsafeMemory64.WriteRaw9(ref MessagePack.MessagePackWriter writer, System.ReadOnlySpan src) -> void -static MessagePack.MessagePackCode.ToFormatName(byte code) -> string! -static MessagePack.MessagePackCode.ToMessagePackType(byte code) -> MessagePack.MessagePackType -static MessagePack.MessagePackSerializer.ConvertFromJson(System.IO.TextReader! reader, ref MessagePack.MessagePackWriter writer, MessagePack.MessagePackSerializerOptions? options = null) -> void -static MessagePack.MessagePackSerializer.ConvertFromJson(string! str, MessagePack.MessagePackSerializerOptions? options = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) -> byte[]! -static MessagePack.MessagePackSerializer.ConvertFromJson(string! str, ref MessagePack.MessagePackWriter writer, MessagePack.MessagePackSerializerOptions? options = null) -> void -static MessagePack.MessagePackSerializer.ConvertToJson(System.ReadOnlyMemory bytes, MessagePack.MessagePackSerializerOptions? options = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) -> string! -static MessagePack.MessagePackSerializer.ConvertToJson(in System.Buffers.ReadOnlySequence bytes, MessagePack.MessagePackSerializerOptions? options = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) -> string! -static MessagePack.MessagePackSerializer.ConvertToJson(ref MessagePack.MessagePackReader reader, System.IO.TextWriter! jsonWriter, MessagePack.MessagePackSerializerOptions? options = null) -> void -static MessagePack.MessagePackSerializer.DefaultOptions.get -> MessagePack.MessagePackSerializerOptions! -static MessagePack.MessagePackSerializer.DefaultOptions.set -> void -static MessagePack.MessagePackSerializer.Deserialize(System.Type! type, System.Buffers.ReadOnlySequence bytes, MessagePack.MessagePackSerializerOptions? options = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) -> object? -static MessagePack.MessagePackSerializer.Deserialize(System.Type! type, System.IO.Stream! stream, MessagePack.MessagePackSerializerOptions? options = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) -> object? -static MessagePack.MessagePackSerializer.Deserialize(System.Type! type, System.ReadOnlyMemory bytes, MessagePack.MessagePackSerializerOptions? options = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) -> object? -static MessagePack.MessagePackSerializer.Deserialize(System.Type! type, ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions? options = null) -> object? -static MessagePack.MessagePackSerializer.Deserialize(System.IO.Stream! stream, MessagePack.MessagePackSerializerOptions? options = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) -> T -static MessagePack.MessagePackSerializer.Deserialize(System.ReadOnlyMemory buffer, MessagePack.MessagePackSerializerOptions? options = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) -> T -static MessagePack.MessagePackSerializer.Deserialize(System.ReadOnlyMemory buffer, MessagePack.MessagePackSerializerOptions? options, out int bytesRead, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) -> T -static MessagePack.MessagePackSerializer.Deserialize(System.ReadOnlyMemory buffer, out int bytesRead, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) -> T -static MessagePack.MessagePackSerializer.Deserialize(in System.Buffers.ReadOnlySequence byteSequence, MessagePack.MessagePackSerializerOptions? options = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) -> T -static MessagePack.MessagePackSerializer.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions? options = null) -> T -static MessagePack.MessagePackSerializer.DeserializeAsync(System.Type! type, System.IO.Stream! stream, MessagePack.MessagePackSerializerOptions? options = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) -> System.Threading.Tasks.ValueTask -static MessagePack.MessagePackSerializer.DeserializeAsync(System.IO.Stream! stream, MessagePack.MessagePackSerializerOptions? options = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) -> System.Threading.Tasks.ValueTask -static MessagePack.MessagePackSerializer.Serialize(System.Type! type, System.Buffers.IBufferWriter! writer, object? obj, MessagePack.MessagePackSerializerOptions? options = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) -> void -static MessagePack.MessagePackSerializer.Serialize(System.Type! type, System.IO.Stream! stream, object? obj, MessagePack.MessagePackSerializerOptions? options = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) -> void -static MessagePack.MessagePackSerializer.Serialize(System.Type! type, object? obj, MessagePack.MessagePackSerializerOptions? options = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) -> byte[]! -static MessagePack.MessagePackSerializer.Serialize(System.Type! type, ref MessagePack.MessagePackWriter writer, object? obj, MessagePack.MessagePackSerializerOptions? options = null) -> void -static MessagePack.MessagePackSerializer.Serialize(System.Buffers.IBufferWriter! writer, T value, MessagePack.MessagePackSerializerOptions? options = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) -> void -static MessagePack.MessagePackSerializer.Serialize(System.IO.Stream! stream, T value, MessagePack.MessagePackSerializerOptions? options = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) -> void -static MessagePack.MessagePackSerializer.Serialize(T value, MessagePack.MessagePackSerializerOptions? options = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) -> byte[]! -static MessagePack.MessagePackSerializer.Serialize(ref MessagePack.MessagePackWriter writer, T value, MessagePack.MessagePackSerializerOptions? options = null) -> void -static MessagePack.MessagePackSerializer.SerializeAsync(System.Type! type, System.IO.Stream! stream, object? obj, MessagePack.MessagePackSerializerOptions? options = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) -> System.Threading.Tasks.Task! -static MessagePack.MessagePackSerializer.SerializeAsync(System.IO.Stream! stream, T value, MessagePack.MessagePackSerializerOptions? options = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) -> System.Threading.Tasks.Task! -static MessagePack.MessagePackSerializer.SerializeToJson(System.IO.TextWriter! textWriter, T obj, MessagePack.MessagePackSerializerOptions? options = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) -> void -static MessagePack.MessagePackSerializer.SerializeToJson(T obj, MessagePack.MessagePackSerializerOptions? options = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) -> string! -static MessagePack.MessagePackSerializer.Typeless.DefaultOptions.get -> MessagePack.MessagePackSerializerOptions! -static MessagePack.MessagePackSerializer.Typeless.DefaultOptions.set -> void -static MessagePack.MessagePackSerializer.Typeless.Deserialize(System.IO.Stream! stream, MessagePack.MessagePackSerializerOptions? options = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) -> object? -static MessagePack.MessagePackSerializer.Typeless.Deserialize(System.Memory bytes, MessagePack.MessagePackSerializerOptions? options = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) -> object? -static MessagePack.MessagePackSerializer.Typeless.Deserialize(in System.Buffers.ReadOnlySequence byteSequence, MessagePack.MessagePackSerializerOptions? options = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) -> object? -static MessagePack.MessagePackSerializer.Typeless.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions? options = null) -> object? -static MessagePack.MessagePackSerializer.Typeless.DeserializeAsync(System.IO.Stream! stream, MessagePack.MessagePackSerializerOptions? options = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) -> System.Threading.Tasks.ValueTask -static MessagePack.MessagePackSerializer.Typeless.Serialize(System.Buffers.IBufferWriter! writer, object? obj, MessagePack.MessagePackSerializerOptions? options = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) -> void -static MessagePack.MessagePackSerializer.Typeless.Serialize(System.IO.Stream! stream, object? obj, MessagePack.MessagePackSerializerOptions? options = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) -> void -static MessagePack.MessagePackSerializer.Typeless.Serialize(object? obj, MessagePack.MessagePackSerializerOptions? options = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) -> byte[]! -static MessagePack.MessagePackSerializer.Typeless.Serialize(ref MessagePack.MessagePackWriter writer, object? obj, MessagePack.MessagePackSerializerOptions? options = null) -> void -static MessagePack.MessagePackSerializer.Typeless.SerializeAsync(System.IO.Stream! stream, object? obj, MessagePack.MessagePackSerializerOptions? options = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) -> System.Threading.Tasks.Task! -static MessagePack.MessagePackSerializerOptions.Standard.get -> MessagePack.MessagePackSerializerOptions! -static MessagePack.Resolvers.CompositeResolver.Create(System.Collections.Generic.IReadOnlyList! formatters, System.Collections.Generic.IReadOnlyList! resolvers) -> MessagePack.IFormatterResolver! -static MessagePack.Resolvers.CompositeResolver.Create(params MessagePack.Formatters.IMessagePackFormatter![]! formatters) -> MessagePack.IFormatterResolver! -static MessagePack.Resolvers.CompositeResolver.Create(params MessagePack.IFormatterResolver![]! resolvers) -> MessagePack.IFormatterResolver! -static readonly MessagePack.Formatters.BigIntegerFormatter.Instance -> MessagePack.Formatters.IMessagePackFormatter! -static readonly MessagePack.Formatters.BitArrayFormatter.Instance -> MessagePack.Formatters.IMessagePackFormatter! -static readonly MessagePack.Formatters.BooleanArrayFormatter.Instance -> MessagePack.Formatters.BooleanArrayFormatter! -static readonly MessagePack.Formatters.BooleanFormatter.Instance -> MessagePack.Formatters.BooleanFormatter! -static readonly MessagePack.Formatters.ByteArrayFormatter.Instance -> MessagePack.Formatters.ByteArrayFormatter! -static readonly MessagePack.Formatters.ByteArraySegmentFormatter.Instance -> MessagePack.Formatters.ByteArraySegmentFormatter! -static readonly MessagePack.Formatters.ByteFormatter.Instance -> MessagePack.Formatters.ByteFormatter! -static readonly MessagePack.Formatters.CharArrayFormatter.Instance -> MessagePack.Formatters.CharArrayFormatter! -static readonly MessagePack.Formatters.CharFormatter.Instance -> MessagePack.Formatters.CharFormatter! -static readonly MessagePack.Formatters.ComplexFormatter.Instance -> MessagePack.Formatters.IMessagePackFormatter! -static readonly MessagePack.Formatters.DateTimeArrayFormatter.Instance -> MessagePack.Formatters.DateTimeArrayFormatter! -static readonly MessagePack.Formatters.DateTimeFormatter.Instance -> MessagePack.Formatters.DateTimeFormatter! -static readonly MessagePack.Formatters.DateTimeOffsetFormatter.Instance -> MessagePack.Formatters.IMessagePackFormatter! -static readonly MessagePack.Formatters.DecimalFormatter.Instance -> MessagePack.Formatters.DecimalFormatter! -static readonly MessagePack.Formatters.DoubleArrayFormatter.Instance -> MessagePack.Formatters.DoubleArrayFormatter! -static readonly MessagePack.Formatters.DoubleFormatter.Instance -> MessagePack.Formatters.DoubleFormatter! -static readonly MessagePack.Formatters.DynamicObjectTypeFallbackFormatter.Instance -> MessagePack.Formatters.IMessagePackFormatter! -static readonly MessagePack.Formatters.ForceByteBlockFormatter.Instance -> MessagePack.Formatters.ForceByteBlockFormatter! -static readonly MessagePack.Formatters.ForceInt16BlockArrayFormatter.Instance -> MessagePack.Formatters.ForceInt16BlockArrayFormatter! -static readonly MessagePack.Formatters.ForceInt16BlockFormatter.Instance -> MessagePack.Formatters.ForceInt16BlockFormatter! -static readonly MessagePack.Formatters.ForceInt32BlockArrayFormatter.Instance -> MessagePack.Formatters.ForceInt32BlockArrayFormatter! -static readonly MessagePack.Formatters.ForceInt32BlockFormatter.Instance -> MessagePack.Formatters.ForceInt32BlockFormatter! -static readonly MessagePack.Formatters.ForceInt64BlockArrayFormatter.Instance -> MessagePack.Formatters.ForceInt64BlockArrayFormatter! -static readonly MessagePack.Formatters.ForceInt64BlockFormatter.Instance -> MessagePack.Formatters.ForceInt64BlockFormatter! -static readonly MessagePack.Formatters.ForceSByteBlockArrayFormatter.Instance -> MessagePack.Formatters.ForceSByteBlockArrayFormatter! -static readonly MessagePack.Formatters.ForceSByteBlockFormatter.Instance -> MessagePack.Formatters.ForceSByteBlockFormatter! -static readonly MessagePack.Formatters.ForceUInt16BlockArrayFormatter.Instance -> MessagePack.Formatters.ForceUInt16BlockArrayFormatter! -static readonly MessagePack.Formatters.ForceUInt16BlockFormatter.Instance -> MessagePack.Formatters.ForceUInt16BlockFormatter! -static readonly MessagePack.Formatters.ForceUInt32BlockArrayFormatter.Instance -> MessagePack.Formatters.ForceUInt32BlockArrayFormatter! -static readonly MessagePack.Formatters.ForceUInt32BlockFormatter.Instance -> MessagePack.Formatters.ForceUInt32BlockFormatter! -static readonly MessagePack.Formatters.ForceUInt64BlockArrayFormatter.Instance -> MessagePack.Formatters.ForceUInt64BlockArrayFormatter! -static readonly MessagePack.Formatters.ForceUInt64BlockFormatter.Instance -> MessagePack.Formatters.ForceUInt64BlockFormatter! -static readonly MessagePack.Formatters.GuidFormatter.Instance -> MessagePack.Formatters.IMessagePackFormatter! -static readonly MessagePack.Formatters.Int16ArrayFormatter.Instance -> MessagePack.Formatters.Int16ArrayFormatter! -static readonly MessagePack.Formatters.Int16Formatter.Instance -> MessagePack.Formatters.Int16Formatter! -static readonly MessagePack.Formatters.Int32ArrayFormatter.Instance -> MessagePack.Formatters.Int32ArrayFormatter! -static readonly MessagePack.Formatters.Int32Formatter.Instance -> MessagePack.Formatters.Int32Formatter! -static readonly MessagePack.Formatters.Int64ArrayFormatter.Instance -> MessagePack.Formatters.Int64ArrayFormatter! -static readonly MessagePack.Formatters.Int64Formatter.Instance -> MessagePack.Formatters.Int64Formatter! -static readonly MessagePack.Formatters.NativeDateTimeArrayFormatter.Instance -> MessagePack.Formatters.NativeDateTimeArrayFormatter! -static readonly MessagePack.Formatters.NativeDateTimeFormatter.Instance -> MessagePack.Formatters.NativeDateTimeFormatter! -static readonly MessagePack.Formatters.NativeDecimalFormatter.Instance -> MessagePack.Formatters.IMessagePackFormatter! -static readonly MessagePack.Formatters.NativeGuidFormatter.Instance -> MessagePack.Formatters.IMessagePackFormatter! -static readonly MessagePack.Formatters.NilFormatter.Instance -> MessagePack.Formatters.IMessagePackFormatter! -static readonly MessagePack.Formatters.NonGenericInterfaceDictionaryFormatter.Instance -> MessagePack.Formatters.IMessagePackFormatter! -static readonly MessagePack.Formatters.NonGenericInterfaceListFormatter.Instance -> MessagePack.Formatters.IMessagePackFormatter! -static readonly MessagePack.Formatters.NullableBooleanFormatter.Instance -> MessagePack.Formatters.NullableBooleanFormatter! -static readonly MessagePack.Formatters.NullableByteFormatter.Instance -> MessagePack.Formatters.NullableByteFormatter! -static readonly MessagePack.Formatters.NullableCharFormatter.Instance -> MessagePack.Formatters.NullableCharFormatter! -static readonly MessagePack.Formatters.NullableDateTimeFormatter.Instance -> MessagePack.Formatters.NullableDateTimeFormatter! -static readonly MessagePack.Formatters.NullableDoubleFormatter.Instance -> MessagePack.Formatters.NullableDoubleFormatter! -static readonly MessagePack.Formatters.NullableForceByteBlockFormatter.Instance -> MessagePack.Formatters.NullableForceByteBlockFormatter! -static readonly MessagePack.Formatters.NullableForceInt16BlockFormatter.Instance -> MessagePack.Formatters.NullableForceInt16BlockFormatter! -static readonly MessagePack.Formatters.NullableForceInt32BlockFormatter.Instance -> MessagePack.Formatters.NullableForceInt32BlockFormatter! -static readonly MessagePack.Formatters.NullableForceInt64BlockFormatter.Instance -> MessagePack.Formatters.NullableForceInt64BlockFormatter! -static readonly MessagePack.Formatters.NullableForceSByteBlockFormatter.Instance -> MessagePack.Formatters.NullableForceSByteBlockFormatter! -static readonly MessagePack.Formatters.NullableForceUInt16BlockFormatter.Instance -> MessagePack.Formatters.NullableForceUInt16BlockFormatter! -static readonly MessagePack.Formatters.NullableForceUInt32BlockFormatter.Instance -> MessagePack.Formatters.NullableForceUInt32BlockFormatter! -static readonly MessagePack.Formatters.NullableForceUInt64BlockFormatter.Instance -> MessagePack.Formatters.NullableForceUInt64BlockFormatter! -static readonly MessagePack.Formatters.NullableInt16Formatter.Instance -> MessagePack.Formatters.NullableInt16Formatter! -static readonly MessagePack.Formatters.NullableInt32Formatter.Instance -> MessagePack.Formatters.NullableInt32Formatter! -static readonly MessagePack.Formatters.NullableInt64Formatter.Instance -> MessagePack.Formatters.NullableInt64Formatter! -static readonly MessagePack.Formatters.NullableNilFormatter.Instance -> MessagePack.Formatters.IMessagePackFormatter! -static readonly MessagePack.Formatters.NullableSByteFormatter.Instance -> MessagePack.Formatters.NullableSByteFormatter! -static readonly MessagePack.Formatters.NullableSingleFormatter.Instance -> MessagePack.Formatters.NullableSingleFormatter! -static readonly MessagePack.Formatters.NullableStringArrayFormatter.Instance -> MessagePack.Formatters.NullableStringArrayFormatter! -static readonly MessagePack.Formatters.NullableStringFormatter.Instance -> MessagePack.Formatters.NullableStringFormatter! -static readonly MessagePack.Formatters.NullableUInt16Formatter.Instance -> MessagePack.Formatters.NullableUInt16Formatter! -static readonly MessagePack.Formatters.NullableUInt32Formatter.Instance -> MessagePack.Formatters.NullableUInt32Formatter! -static readonly MessagePack.Formatters.NullableUInt64Formatter.Instance -> MessagePack.Formatters.NullableUInt64Formatter! -static readonly MessagePack.Formatters.PrimitiveObjectFormatter.Instance -> MessagePack.Formatters.IMessagePackFormatter! -static readonly MessagePack.Formatters.SByteArrayFormatter.Instance -> MessagePack.Formatters.SByteArrayFormatter! -static readonly MessagePack.Formatters.SByteFormatter.Instance -> MessagePack.Formatters.SByteFormatter! -static readonly MessagePack.Formatters.SingleArrayFormatter.Instance -> MessagePack.Formatters.SingleArrayFormatter! -static readonly MessagePack.Formatters.SingleFormatter.Instance -> MessagePack.Formatters.SingleFormatter! -static readonly MessagePack.Formatters.StringBuilderFormatter.Instance -> MessagePack.Formatters.IMessagePackFormatter! -static readonly MessagePack.Formatters.TimeSpanFormatter.Instance -> MessagePack.Formatters.IMessagePackFormatter! -static readonly MessagePack.Formatters.TypelessFormatter.Instance -> MessagePack.Formatters.IMessagePackFormatter! -static readonly MessagePack.Formatters.UInt16ArrayFormatter.Instance -> MessagePack.Formatters.UInt16ArrayFormatter! -static readonly MessagePack.Formatters.UInt16Formatter.Instance -> MessagePack.Formatters.UInt16Formatter! -static readonly MessagePack.Formatters.UInt32ArrayFormatter.Instance -> MessagePack.Formatters.UInt32ArrayFormatter! -static readonly MessagePack.Formatters.UInt32Formatter.Instance -> MessagePack.Formatters.UInt32Formatter! -static readonly MessagePack.Formatters.UInt64ArrayFormatter.Instance -> MessagePack.Formatters.UInt64ArrayFormatter! -static readonly MessagePack.Formatters.UInt64Formatter.Instance -> MessagePack.Formatters.UInt64Formatter! -static readonly MessagePack.Formatters.UriFormatter.Instance -> MessagePack.Formatters.IMessagePackFormatter! -static readonly MessagePack.Formatters.VersionFormatter.Instance -> MessagePack.Formatters.IMessagePackFormatter! -static readonly MessagePack.Internal.AutomataKeyGen.GetKeyMethod -> System.Reflection.MethodInfo! -static readonly MessagePack.Internal.RuntimeTypeHandleEqualityComparer.Default -> System.Collections.Generic.IEqualityComparer! -static readonly MessagePack.Internal.UnsafeMemory.Is32Bit -> bool -static readonly MessagePack.Nil.Default -> MessagePack.Nil -static readonly MessagePack.Resolvers.AttributeFormatterResolver.Instance -> MessagePack.Resolvers.AttributeFormatterResolver! -static readonly MessagePack.Resolvers.BuiltinResolver.Instance -> MessagePack.Resolvers.BuiltinResolver! -static readonly MessagePack.Resolvers.ContractlessStandardResolver.Instance -> MessagePack.Resolvers.ContractlessStandardResolver! -static readonly MessagePack.Resolvers.ContractlessStandardResolver.Options -> MessagePack.MessagePackSerializerOptions! -static readonly MessagePack.Resolvers.ContractlessStandardResolverAllowPrivate.Instance -> MessagePack.Resolvers.ContractlessStandardResolverAllowPrivate! -static readonly MessagePack.Resolvers.ContractlessStandardResolverAllowPrivate.Options -> MessagePack.MessagePackSerializerOptions! -static readonly MessagePack.Resolvers.DynamicContractlessObjectResolver.Instance -> MessagePack.Resolvers.DynamicContractlessObjectResolver! -static readonly MessagePack.Resolvers.DynamicContractlessObjectResolverAllowPrivate.Instance -> MessagePack.Resolvers.DynamicContractlessObjectResolverAllowPrivate! -static readonly MessagePack.Resolvers.DynamicEnumAsStringResolver.Instance -> MessagePack.Resolvers.DynamicEnumAsStringResolver! -static readonly MessagePack.Resolvers.DynamicEnumAsStringResolver.Options -> MessagePack.MessagePackSerializerOptions! -static readonly MessagePack.Resolvers.DynamicEnumResolver.Instance -> MessagePack.Resolvers.DynamicEnumResolver! -static readonly MessagePack.Resolvers.DynamicGenericResolver.Instance -> MessagePack.Resolvers.DynamicGenericResolver! -static readonly MessagePack.Resolvers.DynamicObjectResolver.Instance -> MessagePack.Resolvers.DynamicObjectResolver! -static readonly MessagePack.Resolvers.DynamicObjectResolver.Options -> MessagePack.MessagePackSerializerOptions! -static readonly MessagePack.Resolvers.DynamicObjectResolverAllowPrivate.Instance -> MessagePack.Resolvers.DynamicObjectResolverAllowPrivate! -static readonly MessagePack.Resolvers.DynamicUnionResolver.Instance -> MessagePack.Resolvers.DynamicUnionResolver! -static readonly MessagePack.Resolvers.DynamicUnionResolver.Options -> MessagePack.MessagePackSerializerOptions! -static readonly MessagePack.Resolvers.NativeDateTimeResolver.Instance -> MessagePack.Resolvers.NativeDateTimeResolver! -static readonly MessagePack.Resolvers.NativeDateTimeResolver.Options -> MessagePack.MessagePackSerializerOptions! -static readonly MessagePack.Resolvers.NativeDecimalResolver.Instance -> MessagePack.Resolvers.NativeDecimalResolver! -static readonly MessagePack.Resolvers.NativeGuidResolver.Instance -> MessagePack.Resolvers.NativeGuidResolver! -static readonly MessagePack.Resolvers.PrimitiveObjectResolver.Instance -> MessagePack.Resolvers.PrimitiveObjectResolver! -static readonly MessagePack.Resolvers.PrimitiveObjectResolver.Options -> MessagePack.MessagePackSerializerOptions! -static readonly MessagePack.Resolvers.StandardResolver.Instance -> MessagePack.Resolvers.StandardResolver! -static readonly MessagePack.Resolvers.StandardResolver.Options -> MessagePack.MessagePackSerializerOptions! -static readonly MessagePack.Resolvers.StandardResolverAllowPrivate.Instance -> MessagePack.Resolvers.StandardResolverAllowPrivate! -static readonly MessagePack.Resolvers.StandardResolverAllowPrivate.Options -> MessagePack.MessagePackSerializerOptions! -static readonly MessagePack.Resolvers.StaticCompositeResolver.Instance -> MessagePack.Resolvers.StaticCompositeResolver! -static readonly MessagePack.Resolvers.TypelessContractlessStandardResolver.Instance -> MessagePack.Resolvers.TypelessContractlessStandardResolver! -static readonly MessagePack.Resolvers.TypelessContractlessStandardResolver.Options -> MessagePack.MessagePackSerializerOptions! -static readonly MessagePack.Resolvers.TypelessObjectResolver.Instance -> MessagePack.IFormatterResolver! -virtual MessagePack.Formatters.CollectionFormatterBase.GetCount(TCollection sequence) -> int? -virtual MessagePack.MessagePackSerializerOptions.Clone() -> MessagePack.MessagePackSerializerOptions! -virtual MessagePack.MessagePackSerializerOptions.LoadType(string! typeName) -> System.Type? -virtual MessagePack.MessagePackSerializerOptions.ThrowIfDeserializingTypeIsDisallowed(System.Type! type) -> void -MessagePack.ExtensionHeader.Equals(MessagePack.ExtensionHeader other) -> bool -MessagePack.Formatters.InterfaceCollectionFormatter2 -MessagePack.Formatters.InterfaceCollectionFormatter2.InterfaceCollectionFormatter2() -> void -MessagePack.Formatters.InterfaceListFormatter2 -MessagePack.Formatters.InterfaceListFormatter2.InterfaceListFormatter2() -> void -MessagePack.MessagePackReader.Depth.get -> int -MessagePack.MessagePackReader.Depth.set -> void -MessagePack.MessagePackReader.ReadDateTime(MessagePack.ExtensionHeader header) -> System.DateTime -MessagePack.MessagePackReader.TryReadArrayHeader(out int count) -> bool -MessagePack.MessagePackReader.TryReadExtensionFormatHeader(out MessagePack.ExtensionHeader extensionHeader) -> bool -MessagePack.MessagePackReader.TryReadMapHeader(out int count) -> bool -MessagePack.MessagePackSecurity -MessagePack.MessagePackSecurity.DepthStep(ref MessagePack.MessagePackReader reader) -> void -MessagePack.MessagePackSecurity.GetEqualityComparer() -> System.Collections.IEqualityComparer! -MessagePack.MessagePackSecurity.GetEqualityComparer() -> System.Collections.Generic.IEqualityComparer! -MessagePack.MessagePackSecurity.HashCollisionResistant.get -> bool -MessagePack.MessagePackSecurity.MaximumObjectGraphDepth.get -> int -MessagePack.MessagePackSecurity.MessagePackSecurity(MessagePack.MessagePackSecurity! copyFrom) -> void -MessagePack.MessagePackSecurity.WithHashCollisionResistant(bool hashCollisionResistant) -> MessagePack.MessagePackSecurity! -MessagePack.MessagePackSecurity.WithMaximumObjectGraphDepth(int maximumObjectGraphDepth) -> MessagePack.MessagePackSecurity! -MessagePack.MessagePackSerializerOptions.Security.get -> MessagePack.MessagePackSecurity! -MessagePack.MessagePackSerializerOptions.WithSecurity(MessagePack.MessagePackSecurity! security) -> MessagePack.MessagePackSerializerOptions! -MessagePack.MessagePackStreamReader.DiscardBufferedData() -> void -MessagePack.MessagePackStreamReader.MessagePackStreamReader(System.IO.Stream! stream, bool leaveOpen) -> void -MessagePack.MessagePackStreamReader.ReadArrayAsync(System.Threading.CancellationToken cancellationToken) -> System.Collections.Generic.IAsyncEnumerable>! -MessagePack.MessagePackWriter.WriteBinHeader(int length) -> void -MessagePack.MessagePackWriter.WriteStringHeader(int byteCount) -> void -static readonly MessagePack.MessagePackSecurity.TrustedData -> MessagePack.MessagePackSecurity! -static readonly MessagePack.MessagePackSecurity.UntrustedData -> MessagePack.MessagePackSecurity! -virtual MessagePack.MessagePackSecurity.Clone() -> MessagePack.MessagePackSecurity! -virtual MessagePack.MessagePackSecurity.GetHashCollisionResistantEqualityComparer() -> System.Collections.IEqualityComparer! -virtual MessagePack.MessagePackSecurity.GetHashCollisionResistantEqualityComparer() -> System.Collections.Generic.IEqualityComparer! -MessagePack.Formatters.ByteMemoryFormatter -MessagePack.Formatters.ByteMemoryFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> System.Memory -MessagePack.Formatters.ByteMemoryFormatter.Serialize(ref MessagePack.MessagePackWriter writer, System.Memory value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.ByteReadOnlyMemoryFormatter -MessagePack.Formatters.ByteReadOnlyMemoryFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> System.ReadOnlyMemory -MessagePack.Formatters.ByteReadOnlyMemoryFormatter.Serialize(ref MessagePack.MessagePackWriter writer, System.ReadOnlyMemory value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.ByteReadOnlySequenceFormatter -MessagePack.Formatters.ByteReadOnlySequenceFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> System.Buffers.ReadOnlySequence -MessagePack.Formatters.ByteReadOnlySequenceFormatter.Serialize(ref MessagePack.MessagePackWriter writer, System.Buffers.ReadOnlySequence value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.ExpandoObjectFormatter -MessagePack.Formatters.ExpandoObjectFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> System.Dynamic.ExpandoObject? -MessagePack.Formatters.ExpandoObjectFormatter.Serialize(ref MessagePack.MessagePackWriter writer, System.Dynamic.ExpandoObject? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.ForceTypelessFormatter -MessagePack.Formatters.ForceTypelessFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> T? -MessagePack.Formatters.ForceTypelessFormatter.ForceTypelessFormatter() -> void -MessagePack.Formatters.ForceTypelessFormatter.Serialize(ref MessagePack.MessagePackWriter writer, T? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.MemoryFormatter -MessagePack.Formatters.MemoryFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> System.Memory -MessagePack.Formatters.MemoryFormatter.MemoryFormatter() -> void -MessagePack.Formatters.MemoryFormatter.Serialize(ref MessagePack.MessagePackWriter writer, System.Memory value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.NonGenericInterfaceCollectionFormatter -MessagePack.Formatters.NonGenericInterfaceCollectionFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> System.Collections.ICollection? -MessagePack.Formatters.NonGenericInterfaceCollectionFormatter.Serialize(ref MessagePack.MessagePackWriter writer, System.Collections.ICollection? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.NonGenericInterfaceEnumerableFormatter -MessagePack.Formatters.NonGenericInterfaceEnumerableFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> System.Collections.IEnumerable? -MessagePack.Formatters.NonGenericInterfaceEnumerableFormatter.Serialize(ref MessagePack.MessagePackWriter writer, System.Collections.IEnumerable? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.PrimitiveObjectFormatter.PrimitiveObjectFormatter() -> void -MessagePack.Formatters.ReadOnlyMemoryFormatter -MessagePack.Formatters.ReadOnlyMemoryFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> System.ReadOnlyMemory -MessagePack.Formatters.ReadOnlyMemoryFormatter.ReadOnlyMemoryFormatter() -> void -MessagePack.Formatters.ReadOnlyMemoryFormatter.Serialize(ref MessagePack.MessagePackWriter writer, System.ReadOnlyMemory value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.ReadOnlySequenceFormatter -MessagePack.Formatters.ReadOnlySequenceFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> System.Buffers.ReadOnlySequence -MessagePack.Formatters.ReadOnlySequenceFormatter.ReadOnlySequenceFormatter() -> void -MessagePack.Formatters.ReadOnlySequenceFormatter.Serialize(ref MessagePack.MessagePackWriter writer, System.Buffers.ReadOnlySequence value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.TypeFormatter -MessagePack.Formatters.TypeFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> T? -MessagePack.Formatters.TypeFormatter.Serialize(ref MessagePack.MessagePackWriter writer, T? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.TypelessFormatter.TypelessFormatter() -> void -MessagePack.ImmutableCollection.ImmutableArrayFormatter -~MessagePack.ImmutableCollection.ImmutableArrayFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions options) -> System.Collections.Immutable.ImmutableArray -MessagePack.ImmutableCollection.ImmutableArrayFormatter.ImmutableArrayFormatter() -> void -~MessagePack.ImmutableCollection.ImmutableArrayFormatter.Serialize(ref MessagePack.MessagePackWriter writer, System.Collections.Immutable.ImmutableArray value, MessagePack.MessagePackSerializerOptions options) -> void -MessagePack.ImmutableCollection.ImmutableCollectionResolver -MessagePack.ImmutableCollection.ImmutableCollectionResolver.GetFormatter() -> MessagePack.Formatters.IMessagePackFormatter? -MessagePack.ImmutableCollection.ImmutableDictionaryFormatter -MessagePack.ImmutableCollection.ImmutableDictionaryFormatter.ImmutableDictionaryFormatter() -> void -MessagePack.ImmutableCollection.ImmutableHashSetFormatter -MessagePack.ImmutableCollection.ImmutableHashSetFormatter.ImmutableHashSetFormatter() -> void -MessagePack.ImmutableCollection.ImmutableListFormatter -MessagePack.ImmutableCollection.ImmutableListFormatter.ImmutableListFormatter() -> void -MessagePack.ImmutableCollection.ImmutableQueueBuilder -MessagePack.ImmutableCollection.ImmutableQueueBuilder.Add(T value) -> void -MessagePack.ImmutableCollection.ImmutableQueueBuilder.ImmutableQueueBuilder() -> void -~MessagePack.ImmutableCollection.ImmutableQueueBuilder.Q.get -> System.Collections.Immutable.ImmutableQueue -~MessagePack.ImmutableCollection.ImmutableQueueBuilder.Q.set -> void -MessagePack.ImmutableCollection.ImmutableQueueFormatter -MessagePack.ImmutableCollection.ImmutableQueueFormatter.ImmutableQueueFormatter() -> void -MessagePack.ImmutableCollection.ImmutableSortedDictionaryFormatter -MessagePack.ImmutableCollection.ImmutableSortedDictionaryFormatter.ImmutableSortedDictionaryFormatter() -> void -MessagePack.ImmutableCollection.ImmutableSortedSetFormatter -MessagePack.ImmutableCollection.ImmutableSortedSetFormatter.ImmutableSortedSetFormatter() -> void -MessagePack.ImmutableCollection.ImmutableStackFormatter -MessagePack.ImmutableCollection.ImmutableStackFormatter.ImmutableStackFormatter() -> void -MessagePack.ImmutableCollection.InterfaceImmutableDictionaryFormatter -MessagePack.ImmutableCollection.InterfaceImmutableDictionaryFormatter.InterfaceImmutableDictionaryFormatter() -> void -MessagePack.ImmutableCollection.InterfaceImmutableListFormatter -MessagePack.ImmutableCollection.InterfaceImmutableListFormatter.InterfaceImmutableListFormatter() -> void -MessagePack.ImmutableCollection.InterfaceImmutableQueueFormatter -MessagePack.ImmutableCollection.InterfaceImmutableQueueFormatter.InterfaceImmutableQueueFormatter() -> void -MessagePack.ImmutableCollection.InterfaceImmutableSetFormatter -MessagePack.ImmutableCollection.InterfaceImmutableSetFormatter.InterfaceImmutableSetFormatter() -> void -MessagePack.ImmutableCollection.InterfaceImmutableStackFormatter -MessagePack.ImmutableCollection.InterfaceImmutableStackFormatter.InterfaceImmutableStackFormatter() -> void -MessagePack.Resolvers.ExpandoObjectResolver -~override MessagePack.ImmutableCollection.ImmutableDictionaryFormatter.Add(System.Collections.Immutable.ImmutableDictionary.Builder collection, int index, TKey key, TValue value, MessagePack.MessagePackSerializerOptions options) -> void -~override MessagePack.ImmutableCollection.ImmutableDictionaryFormatter.Complete(System.Collections.Immutable.ImmutableDictionary.Builder intermediateCollection) -> System.Collections.Immutable.ImmutableDictionary -~override MessagePack.ImmutableCollection.ImmutableDictionaryFormatter.Create(int count, MessagePack.MessagePackSerializerOptions options) -> System.Collections.Immutable.ImmutableDictionary.Builder -~override MessagePack.ImmutableCollection.ImmutableDictionaryFormatter.GetSourceEnumerator(System.Collections.Immutable.ImmutableDictionary source) -> System.Collections.Immutable.ImmutableDictionary.Enumerator -~override MessagePack.ImmutableCollection.ImmutableHashSetFormatter.Add(System.Collections.Immutable.ImmutableHashSet.Builder collection, int index, T value, MessagePack.MessagePackSerializerOptions options) -> void -~override MessagePack.ImmutableCollection.ImmutableHashSetFormatter.Complete(System.Collections.Immutable.ImmutableHashSet.Builder intermediateCollection) -> System.Collections.Immutable.ImmutableHashSet -~override MessagePack.ImmutableCollection.ImmutableHashSetFormatter.Create(int count, MessagePack.MessagePackSerializerOptions options) -> System.Collections.Immutable.ImmutableHashSet.Builder -~override MessagePack.ImmutableCollection.ImmutableHashSetFormatter.GetSourceEnumerator(System.Collections.Immutable.ImmutableHashSet source) -> System.Collections.Immutable.ImmutableHashSet.Enumerator -~override MessagePack.ImmutableCollection.ImmutableListFormatter.Add(System.Collections.Immutable.ImmutableList.Builder collection, int index, T value, MessagePack.MessagePackSerializerOptions options) -> void -~override MessagePack.ImmutableCollection.ImmutableListFormatter.Complete(System.Collections.Immutable.ImmutableList.Builder intermediateCollection) -> System.Collections.Immutable.ImmutableList -~override MessagePack.ImmutableCollection.ImmutableListFormatter.Create(int count, MessagePack.MessagePackSerializerOptions options) -> System.Collections.Immutable.ImmutableList.Builder -~override MessagePack.ImmutableCollection.ImmutableListFormatter.GetSourceEnumerator(System.Collections.Immutable.ImmutableList source) -> System.Collections.Immutable.ImmutableList.Enumerator -~override MessagePack.ImmutableCollection.ImmutableQueueFormatter.Add(MessagePack.ImmutableCollection.ImmutableQueueBuilder collection, int index, T value, MessagePack.MessagePackSerializerOptions options) -> void -~override MessagePack.ImmutableCollection.ImmutableQueueFormatter.Complete(MessagePack.ImmutableCollection.ImmutableQueueBuilder intermediateCollection) -> System.Collections.Immutable.ImmutableQueue -~override MessagePack.ImmutableCollection.ImmutableQueueFormatter.Create(int count, MessagePack.MessagePackSerializerOptions options) -> MessagePack.ImmutableCollection.ImmutableQueueBuilder -~override MessagePack.ImmutableCollection.ImmutableSortedDictionaryFormatter.Add(System.Collections.Immutable.ImmutableSortedDictionary.Builder collection, int index, TKey key, TValue value, MessagePack.MessagePackSerializerOptions options) -> void -~override MessagePack.ImmutableCollection.ImmutableSortedDictionaryFormatter.Complete(System.Collections.Immutable.ImmutableSortedDictionary.Builder intermediateCollection) -> System.Collections.Immutable.ImmutableSortedDictionary -~override MessagePack.ImmutableCollection.ImmutableSortedDictionaryFormatter.Create(int count, MessagePack.MessagePackSerializerOptions options) -> System.Collections.Immutable.ImmutableSortedDictionary.Builder -~override MessagePack.ImmutableCollection.ImmutableSortedDictionaryFormatter.GetSourceEnumerator(System.Collections.Immutable.ImmutableSortedDictionary source) -> System.Collections.Immutable.ImmutableSortedDictionary.Enumerator -~override MessagePack.ImmutableCollection.ImmutableSortedSetFormatter.Add(System.Collections.Immutable.ImmutableSortedSet.Builder collection, int index, T value, MessagePack.MessagePackSerializerOptions options) -> void -~override MessagePack.ImmutableCollection.ImmutableSortedSetFormatter.Complete(System.Collections.Immutable.ImmutableSortedSet.Builder intermediateCollection) -> System.Collections.Immutable.ImmutableSortedSet -~override MessagePack.ImmutableCollection.ImmutableSortedSetFormatter.Create(int count, MessagePack.MessagePackSerializerOptions options) -> System.Collections.Immutable.ImmutableSortedSet.Builder -~override MessagePack.ImmutableCollection.ImmutableSortedSetFormatter.GetSourceEnumerator(System.Collections.Immutable.ImmutableSortedSet source) -> System.Collections.Immutable.ImmutableSortedSet.Enumerator -~override MessagePack.ImmutableCollection.ImmutableStackFormatter.Add(T[] collection, int index, T value, MessagePack.MessagePackSerializerOptions options) -> void -~override MessagePack.ImmutableCollection.ImmutableStackFormatter.Complete(T[] intermediateCollection) -> System.Collections.Immutable.ImmutableStack -~override MessagePack.ImmutableCollection.ImmutableStackFormatter.Create(int count, MessagePack.MessagePackSerializerOptions options) -> T[] -~override MessagePack.ImmutableCollection.InterfaceImmutableDictionaryFormatter.Add(System.Collections.Immutable.ImmutableDictionary.Builder collection, int index, TKey key, TValue value, MessagePack.MessagePackSerializerOptions options) -> void -~override MessagePack.ImmutableCollection.InterfaceImmutableDictionaryFormatter.Complete(System.Collections.Immutable.ImmutableDictionary.Builder intermediateCollection) -> System.Collections.Immutable.IImmutableDictionary -~override MessagePack.ImmutableCollection.InterfaceImmutableDictionaryFormatter.Create(int count, MessagePack.MessagePackSerializerOptions options) -> System.Collections.Immutable.ImmutableDictionary.Builder -~override MessagePack.ImmutableCollection.InterfaceImmutableListFormatter.Add(System.Collections.Immutable.ImmutableList.Builder collection, int index, T value, MessagePack.MessagePackSerializerOptions options) -> void -~override MessagePack.ImmutableCollection.InterfaceImmutableListFormatter.Complete(System.Collections.Immutable.ImmutableList.Builder intermediateCollection) -> System.Collections.Immutable.IImmutableList -~override MessagePack.ImmutableCollection.InterfaceImmutableListFormatter.Create(int count, MessagePack.MessagePackSerializerOptions options) -> System.Collections.Immutable.ImmutableList.Builder -~override MessagePack.ImmutableCollection.InterfaceImmutableQueueFormatter.Add(MessagePack.ImmutableCollection.ImmutableQueueBuilder collection, int index, T value, MessagePack.MessagePackSerializerOptions options) -> void -~override MessagePack.ImmutableCollection.InterfaceImmutableQueueFormatter.Complete(MessagePack.ImmutableCollection.ImmutableQueueBuilder intermediateCollection) -> System.Collections.Immutable.IImmutableQueue -~override MessagePack.ImmutableCollection.InterfaceImmutableQueueFormatter.Create(int count, MessagePack.MessagePackSerializerOptions options) -> MessagePack.ImmutableCollection.ImmutableQueueBuilder -~override MessagePack.ImmutableCollection.InterfaceImmutableSetFormatter.Add(System.Collections.Immutable.ImmutableHashSet.Builder collection, int index, T value, MessagePack.MessagePackSerializerOptions options) -> void -~override MessagePack.ImmutableCollection.InterfaceImmutableSetFormatter.Complete(System.Collections.Immutable.ImmutableHashSet.Builder intermediateCollection) -> System.Collections.Immutable.IImmutableSet -~override MessagePack.ImmutableCollection.InterfaceImmutableSetFormatter.Create(int count, MessagePack.MessagePackSerializerOptions options) -> System.Collections.Immutable.ImmutableHashSet.Builder -~override MessagePack.ImmutableCollection.InterfaceImmutableStackFormatter.Add(T[] collection, int index, T value, MessagePack.MessagePackSerializerOptions options) -> void -~override MessagePack.ImmutableCollection.InterfaceImmutableStackFormatter.Complete(T[] intermediateCollection) -> System.Collections.Immutable.IImmutableStack -~override MessagePack.ImmutableCollection.InterfaceImmutableStackFormatter.Create(int count, MessagePack.MessagePackSerializerOptions options) -> T[] -static readonly MessagePack.Formatters.ByteMemoryFormatter.Instance -> MessagePack.Formatters.ByteMemoryFormatter! -static readonly MessagePack.Formatters.ByteReadOnlyMemoryFormatter.Instance -> MessagePack.Formatters.ByteReadOnlyMemoryFormatter! -static readonly MessagePack.Formatters.ByteReadOnlySequenceFormatter.Instance -> MessagePack.Formatters.ByteReadOnlySequenceFormatter! -static readonly MessagePack.Formatters.ExpandoObjectFormatter.Instance -> MessagePack.Formatters.IMessagePackFormatter! -static readonly MessagePack.Formatters.NonGenericInterfaceCollectionFormatter.Instance -> MessagePack.Formatters.IMessagePackFormatter! -static readonly MessagePack.Formatters.NonGenericInterfaceEnumerableFormatter.Instance -> MessagePack.Formatters.IMessagePackFormatter! -static readonly MessagePack.Formatters.TypeFormatter.Instance -> MessagePack.Formatters.IMessagePackFormatter! -static readonly MessagePack.ImmutableCollection.ImmutableCollectionResolver.Instance -> MessagePack.ImmutableCollection.ImmutableCollectionResolver! -static readonly MessagePack.Resolvers.ExpandoObjectResolver.Instance -> MessagePack.IFormatterResolver! -static readonly MessagePack.Resolvers.ExpandoObjectResolver.Options -> MessagePack.MessagePackSerializerOptions! -virtual MessagePack.Formatters.PrimitiveObjectFormatter.DeserializeMap(ref MessagePack.MessagePackReader reader, int length, MessagePack.MessagePackSerializerOptions! options) -> object! -MessagePack.ExtensionHeader.ExtensionHeader() -> void -MessagePack.ExtensionResult.ExtensionResult() -> void -MessagePack.FormatterNotRegisteredException.FormatterNotRegisteredException(System.Runtime.Serialization.SerializationInfo! info, System.Runtime.Serialization.StreamingContext context) -> void -MessagePack.Formatters.HalfFormatter -MessagePack.Formatters.HalfFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> System.Half -MessagePack.Formatters.HalfFormatter.Serialize(ref MessagePack.MessagePackWriter writer, System.Half value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.InterfaceReadOnlySetFormatter -MessagePack.Formatters.InterfaceReadOnlySetFormatter.InterfaceReadOnlySetFormatter() -> void -MessagePack.MessagePackReader.MessagePackReader() -> void -MessagePack.MessagePackSerializerOptions.SequencePool.get -> MessagePack.SequencePool! -MessagePack.MessagePackSerializerOptions.WithPool(MessagePack.SequencePool! pool) -> MessagePack.MessagePackSerializerOptions! -MessagePack.MessagePackStreamReader.MessagePackStreamReader(System.IO.Stream! stream, bool leaveOpen, MessagePack.SequencePool! sequencePool) -> void -MessagePack.MessagePackStreamReader.ReadArrayHeaderAsync(System.Threading.CancellationToken cancellationToken) -> System.Threading.Tasks.ValueTask -MessagePack.MessagePackStreamReader.ReadMapHeaderAsync(System.Threading.CancellationToken cancellationToken) -> System.Threading.Tasks.ValueTask -MessagePack.MessagePackWriter.MessagePackWriter() -> void -MessagePack.SequencePool -MessagePack.SequencePool.SequencePool() -> void -MessagePack.SequencePool.SequencePool(int maxSize) -> void -MessagePack.SequencePool.SequencePool(int maxSize, System.Buffers.ArrayPool! arrayPool) -> void -MessagePack.SequencePool.SequencePool(int maxSize, System.Buffers.MemoryPool! memoryPool) -> void -MessagePack.TinyJsonException.TinyJsonException(System.Runtime.Serialization.SerializationInfo! info, System.Runtime.Serialization.StreamingContext context) -> void -static MessagePack.Nil.operator !=(MessagePack.Nil left, MessagePack.Nil right) -> bool -static MessagePack.Nil.operator ==(MessagePack.Nil left, MessagePack.Nil right) -> bool -static readonly MessagePack.Formatters.HalfFormatter.Instance -> MessagePack.Formatters.IMessagePackFormatter! -virtual MessagePack.MessagePackStreamReader.Dispose(bool disposing) -> void -MessagePack.Formatters.GenericEnumerableFormatter -MessagePack.Formatters.GenericEnumerableFormatter.GenericEnumerableFormatter() -> void -MessagePack.Formatters.GenericReadOnlyDictionaryFormatter -MessagePack.Formatters.GenericReadOnlyDictionaryFormatter.GenericReadOnlyDictionaryFormatter() -> void -MessagePack.Formatters.DateOnlyFormatter -MessagePack.Formatters.DateOnlyFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> System.DateOnly -MessagePack.Formatters.DateOnlyFormatter.Serialize(ref MessagePack.MessagePackWriter writer, System.DateOnly value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.StringInterningFormatter -MessagePack.Formatters.StringInterningFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> string? -MessagePack.Formatters.StringInterningFormatter.Serialize(ref MessagePack.MessagePackWriter writer, string? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.StringInterningFormatter.StringInterningFormatter() -> void -MessagePack.Formatters.TimeOnlyFormatter -MessagePack.Formatters.TimeOnlyFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> System.TimeOnly -MessagePack.Formatters.TimeOnlyFormatter.Serialize(ref MessagePack.MessagePackWriter writer, System.TimeOnly value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.MessagePackSerializerOptions.CompressionMinLength.get -> int -MessagePack.MessagePackSerializerOptions.SuggestedContiguousMemorySize.get -> int -MessagePack.MessagePackSerializerOptions.WithCompressionMinLength(int compressionMinLength) -> MessagePack.MessagePackSerializerOptions! -MessagePack.MessagePackSerializerOptions.WithSuggestedContiguousMemorySize(int suggestedContiguousMemorySize) -> MessagePack.MessagePackSerializerOptions! -static MessagePack.MessagePackWriter.GetEncodedLength(long value) -> int -static MessagePack.MessagePackWriter.GetEncodedLength(ulong value) -> int -static readonly MessagePack.Formatters.DateOnlyFormatter.Instance -> MessagePack.Formatters.DateOnlyFormatter! -static readonly MessagePack.Formatters.TimeOnlyFormatter.Instance -> MessagePack.Formatters.TimeOnlyFormatter! -const MessagePack.ReservedExtensionTypeCodes.Lz4Block = 99 -> sbyte -const MessagePack.ReservedExtensionTypeCodes.Lz4BlockArray = 98 -> sbyte -const MessagePack.ReservedExtensionTypeCodes.TypelessFormatter = 100 -> sbyte -const MessagePack.ReservedExtensionTypeCodes.UnityBounds = 35 -> sbyte -const MessagePack.ReservedExtensionTypeCodes.UnityColor = 34 -> sbyte -const MessagePack.ReservedExtensionTypeCodes.UnityDouble = 39 -> sbyte -const MessagePack.ReservedExtensionTypeCodes.UnityFloat = 38 -> sbyte -const MessagePack.ReservedExtensionTypeCodes.UnityInt = 37 -> sbyte -const MessagePack.ReservedExtensionTypeCodes.UnityQuaternion = 33 -> sbyte -const MessagePack.ReservedExtensionTypeCodes.UnityRect = 36 -> sbyte -const MessagePack.ReservedExtensionTypeCodes.UnityVector2 = 30 -> sbyte -const MessagePack.ReservedExtensionTypeCodes.UnityVector3 = 31 -> sbyte -const MessagePack.ReservedExtensionTypeCodes.UnityVector4 = 32 -> sbyte -MessagePack.CompositeResolverAttribute -MessagePack.CompositeResolverAttribute.CompositeResolverAttribute(params System.Type![]! formattersAndResolvers) -> void -MessagePack.CompositeResolverAttribute.IncludeLocalFormatters.get -> bool -MessagePack.CompositeResolverAttribute.IncludeLocalFormatters.set -> void -MessagePack.Formatters.BooleanListFormatter -MessagePack.Formatters.BooleanListFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> System.Collections.Generic.List? -MessagePack.Formatters.BooleanListFormatter.Serialize(ref MessagePack.MessagePackWriter writer, System.Collections.Generic.List? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.ByteListFormatter -MessagePack.Formatters.ByteListFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> System.Collections.Generic.List? -MessagePack.Formatters.ByteListFormatter.Serialize(ref MessagePack.MessagePackWriter writer, System.Collections.Generic.List? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.CharListFormatter -MessagePack.Formatters.CharListFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> System.Collections.Generic.List? -MessagePack.Formatters.CharListFormatter.Serialize(ref MessagePack.MessagePackWriter writer, System.Collections.Generic.List? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.DoubleListFormatter -MessagePack.Formatters.DoubleListFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> System.Collections.Generic.List? -MessagePack.Formatters.DoubleListFormatter.Serialize(ref MessagePack.MessagePackWriter writer, System.Collections.Generic.List? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.EnumAsStringFormatter.EnumAsStringFormatter(bool ignoreCase) -> void -MessagePack.Formatters.Int16ListFormatter -MessagePack.Formatters.Int16ListFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> System.Collections.Generic.List? -MessagePack.Formatters.Int16ListFormatter.Serialize(ref MessagePack.MessagePackWriter writer, System.Collections.Generic.List? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.Int32ListFormatter -MessagePack.Formatters.Int32ListFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> System.Collections.Generic.List? -MessagePack.Formatters.Int32ListFormatter.Serialize(ref MessagePack.MessagePackWriter writer, System.Collections.Generic.List? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.Int64ListFormatter -MessagePack.Formatters.Int64ListFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> System.Collections.Generic.List? -MessagePack.Formatters.Int64ListFormatter.Serialize(ref MessagePack.MessagePackWriter writer, System.Collections.Generic.List? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.Matrix3x2Formatter -MessagePack.Formatters.Matrix3x2Formatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> System.Numerics.Matrix3x2 -MessagePack.Formatters.Matrix3x2Formatter.Serialize(ref MessagePack.MessagePackWriter writer, System.Numerics.Matrix3x2 value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.Matrix4x4Formatter -MessagePack.Formatters.Matrix4x4Formatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> System.Numerics.Matrix4x4 -MessagePack.Formatters.Matrix4x4Formatter.Serialize(ref MessagePack.MessagePackWriter writer, System.Numerics.Matrix4x4 value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.PriorityQueueFormatter -MessagePack.Formatters.PriorityQueueFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> System.Collections.Generic.PriorityQueue? -MessagePack.Formatters.PriorityQueueFormatter.PriorityQueueFormatter() -> void -MessagePack.Formatters.PriorityQueueFormatter.PriorityQueueFormatter(System.Collections.Generic.IComparer? comparer) -> void -MessagePack.Formatters.PriorityQueueFormatter.Serialize(ref MessagePack.MessagePackWriter writer, System.Collections.Generic.PriorityQueue? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.QuaternionFormatter -MessagePack.Formatters.QuaternionFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> System.Numerics.Quaternion -MessagePack.Formatters.QuaternionFormatter.Serialize(ref MessagePack.MessagePackWriter writer, System.Numerics.Quaternion value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.SByteListFormatter -MessagePack.Formatters.SByteListFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> System.Collections.Generic.List? -MessagePack.Formatters.SByteListFormatter.Serialize(ref MessagePack.MessagePackWriter writer, System.Collections.Generic.List? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.SingleListFormatter -MessagePack.Formatters.SingleListFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> System.Collections.Generic.List? -MessagePack.Formatters.SingleListFormatter.Serialize(ref MessagePack.MessagePackWriter writer, System.Collections.Generic.List? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.UInt16ListFormatter -MessagePack.Formatters.UInt16ListFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> System.Collections.Generic.List? -MessagePack.Formatters.UInt16ListFormatter.Serialize(ref MessagePack.MessagePackWriter writer, System.Collections.Generic.List? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.UInt32ListFormatter -MessagePack.Formatters.UInt32ListFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> System.Collections.Generic.List? -MessagePack.Formatters.UInt32ListFormatter.Serialize(ref MessagePack.MessagePackWriter writer, System.Collections.Generic.List? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.UInt64ListFormatter -MessagePack.Formatters.UInt64ListFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> System.Collections.Generic.List? -MessagePack.Formatters.UInt64ListFormatter.Serialize(ref MessagePack.MessagePackWriter writer, System.Collections.Generic.List? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.Vector2Formatter -MessagePack.Formatters.Vector2Formatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> System.Numerics.Vector2 -MessagePack.Formatters.Vector2Formatter.Serialize(ref MessagePack.MessagePackWriter writer, System.Numerics.Vector2 value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.Vector3Formatter -MessagePack.Formatters.Vector3Formatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> System.Numerics.Vector3 -MessagePack.Formatters.Vector3Formatter.Serialize(ref MessagePack.MessagePackWriter writer, System.Numerics.Vector3 value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.Vector4Formatter -MessagePack.Formatters.Vector4Formatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> System.Numerics.Vector4 -MessagePack.Formatters.Vector4Formatter.Serialize(ref MessagePack.MessagePackWriter writer, System.Numerics.Vector4 value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.GeneratedMessagePackResolverAttribute -MessagePack.GeneratedMessagePackResolverAttribute.GeneratedMessagePackResolverAttribute() -> void -MessagePack.GeneratedMessagePackResolverAttribute.UseMapMode.get -> bool -MessagePack.GeneratedMessagePackResolverAttribute.UseMapMode.set -> void -MessagePack.ImmutableCollection.FrozenDictionaryFormatter -MessagePack.ImmutableCollection.FrozenDictionaryFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> System.Collections.Frozen.FrozenDictionary? -MessagePack.ImmutableCollection.FrozenDictionaryFormatter.FrozenDictionaryFormatter() -> void -MessagePack.ImmutableCollection.FrozenDictionaryFormatter.FrozenDictionaryFormatter(System.Collections.Generic.IEqualityComparer? comparer) -> void -MessagePack.ImmutableCollection.FrozenDictionaryFormatter.Serialize(ref MessagePack.MessagePackWriter writer, System.Collections.Frozen.FrozenDictionary? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.ImmutableCollection.FrozenSetFormatter -MessagePack.ImmutableCollection.FrozenSetFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> System.Collections.Frozen.FrozenSet? -MessagePack.ImmutableCollection.FrozenSetFormatter.FrozenSetFormatter() -> void -MessagePack.ImmutableCollection.FrozenSetFormatter.FrozenSetFormatter(System.Collections.Generic.IEqualityComparer! comparer) -> void -MessagePack.ImmutableCollection.FrozenSetFormatter.Serialize(ref MessagePack.MessagePackWriter writer, System.Collections.Frozen.FrozenSet? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Internal.GeneratedAssemblyMessagePackResolverAttribute -MessagePack.Internal.GeneratedAssemblyMessagePackResolverAttribute.GeneratedAssemblyMessagePackResolverAttribute(System.Type! resolverType, int majorVersion, int minorVersion) -> void -MessagePack.Internal.GeneratedAssemblyMessagePackResolverAttribute.MajorVersion.get -> int -MessagePack.Internal.GeneratedAssemblyMessagePackResolverAttribute.MinorVersion.get -> int -MessagePack.Internal.GeneratedAssemblyMessagePackResolverAttribute.ResolverType.get -> System.Type! -MessagePack.MessagePackPrimitives -MessagePack.MessagePackPrimitives.DecodeResult -MessagePack.MessagePackPrimitives.DecodeResult.EmptyBuffer = 2 -> MessagePack.MessagePackPrimitives.DecodeResult -MessagePack.MessagePackPrimitives.DecodeResult.InsufficientBuffer = 3 -> MessagePack.MessagePackPrimitives.DecodeResult -MessagePack.MessagePackPrimitives.DecodeResult.Success = 0 -> MessagePack.MessagePackPrimitives.DecodeResult -MessagePack.MessagePackPrimitives.DecodeResult.TokenMismatch = 1 -> MessagePack.MessagePackPrimitives.DecodeResult -MessagePack.ReservedExtensionTypeCodes -MessagePack.Resolvers.DynamicEnumAsStringIgnoreCaseResolver -MessagePack.Resolvers.DynamicEnumAsStringIgnoreCaseResolver.GetFormatter() -> MessagePack.Formatters.IMessagePackFormatter? -MessagePack.Resolvers.SourceGeneratedFormatterResolver -MessagePack.Resolvers.SourceGeneratedFormatterResolver.GetFormatter() -> MessagePack.Formatters.IMessagePackFormatter? -MessagePack.SequencePool.Clear() -> void -static MessagePack.MessagePackPrimitives.TryReadArrayHeader(System.ReadOnlySpan source, out uint count, out int tokenSize) -> MessagePack.MessagePackPrimitives.DecodeResult -static MessagePack.MessagePackPrimitives.TryReadBinHeader(System.ReadOnlySpan source, out uint length, out int tokenSize) -> MessagePack.MessagePackPrimitives.DecodeResult -static MessagePack.MessagePackPrimitives.TryReadBool(System.ReadOnlySpan source, out bool value, out int tokenSize) -> MessagePack.MessagePackPrimitives.DecodeResult -static MessagePack.MessagePackPrimitives.TryReadByte(System.ReadOnlySpan source, out byte value, out int tokenSize) -> MessagePack.MessagePackPrimitives.DecodeResult -static MessagePack.MessagePackPrimitives.TryReadChar(System.ReadOnlySpan source, out char value, out int tokenSize) -> MessagePack.MessagePackPrimitives.DecodeResult -static MessagePack.MessagePackPrimitives.TryReadDateTime(System.ReadOnlySpan source, MessagePack.ExtensionHeader header, out System.DateTime value, out int tokenSize) -> MessagePack.MessagePackPrimitives.DecodeResult -static MessagePack.MessagePackPrimitives.TryReadDateTime(System.ReadOnlySpan source, out System.DateTime value, out int tokenSize) -> MessagePack.MessagePackPrimitives.DecodeResult -static MessagePack.MessagePackPrimitives.TryReadDouble(System.ReadOnlySpan source, out double value, out int tokenSize) -> MessagePack.MessagePackPrimitives.DecodeResult -static MessagePack.MessagePackPrimitives.TryReadExtensionHeader(System.ReadOnlySpan source, out MessagePack.ExtensionHeader extensionHeader, out int tokenSize) -> MessagePack.MessagePackPrimitives.DecodeResult -static MessagePack.MessagePackPrimitives.TryReadInt16(System.ReadOnlySpan source, out short value, out int tokenSize) -> MessagePack.MessagePackPrimitives.DecodeResult -static MessagePack.MessagePackPrimitives.TryReadInt32(System.ReadOnlySpan source, out int value, out int tokenSize) -> MessagePack.MessagePackPrimitives.DecodeResult -static MessagePack.MessagePackPrimitives.TryReadInt64(System.ReadOnlySpan source, out long value, out int tokenSize) -> MessagePack.MessagePackPrimitives.DecodeResult -static MessagePack.MessagePackPrimitives.TryReadMapHeader(System.ReadOnlySpan source, out uint count, out int tokenSize) -> MessagePack.MessagePackPrimitives.DecodeResult -static MessagePack.MessagePackPrimitives.TryReadNil(System.ReadOnlySpan source, out int tokenSize) -> MessagePack.MessagePackPrimitives.DecodeResult -static MessagePack.MessagePackPrimitives.TryReadSByte(System.ReadOnlySpan source, out sbyte value, out int tokenSize) -> MessagePack.MessagePackPrimitives.DecodeResult -static MessagePack.MessagePackPrimitives.TryReadSingle(System.ReadOnlySpan source, out float value, out int tokenSize) -> MessagePack.MessagePackPrimitives.DecodeResult -static MessagePack.MessagePackPrimitives.TryReadStringHeader(System.ReadOnlySpan source, out uint length, out int tokenSize) -> MessagePack.MessagePackPrimitives.DecodeResult -static MessagePack.MessagePackPrimitives.TryReadUInt16(System.ReadOnlySpan source, out ushort value, out int tokenSize) -> MessagePack.MessagePackPrimitives.DecodeResult -static MessagePack.MessagePackPrimitives.TryReadUInt32(System.ReadOnlySpan source, out uint value, out int tokenSize) -> MessagePack.MessagePackPrimitives.DecodeResult -static MessagePack.MessagePackPrimitives.TryReadUInt64(System.ReadOnlySpan source, out ulong value, out int tokenSize) -> MessagePack.MessagePackPrimitives.DecodeResult -static MessagePack.MessagePackPrimitives.TryWrite(System.Span destination, bool value, out int bytesWritten) -> bool -static MessagePack.MessagePackPrimitives.TryWrite(System.Span destination, byte value, out int bytesWritten) -> bool -static MessagePack.MessagePackPrimitives.TryWrite(System.Span destination, char value, out int bytesWritten) -> bool -static MessagePack.MessagePackPrimitives.TryWrite(System.Span destination, double value, out int bytesWritten) -> bool -static MessagePack.MessagePackPrimitives.TryWrite(System.Span destination, float value, out int bytesWritten) -> bool -static MessagePack.MessagePackPrimitives.TryWrite(System.Span destination, int value, out int bytesWritten) -> bool -static MessagePack.MessagePackPrimitives.TryWrite(System.Span destination, long value, out int bytesWritten) -> bool -static MessagePack.MessagePackPrimitives.TryWrite(System.Span destination, sbyte value, out int bytesWritten) -> bool -static MessagePack.MessagePackPrimitives.TryWrite(System.Span destination, short value, out int bytesWritten) -> bool -static MessagePack.MessagePackPrimitives.TryWrite(System.Span destination, System.DateTime value, out int bytesWritten) -> bool -static MessagePack.MessagePackPrimitives.TryWrite(System.Span destination, uint value, out int bytesWritten) -> bool -static MessagePack.MessagePackPrimitives.TryWrite(System.Span destination, ulong value, out int bytesWritten) -> bool -static MessagePack.MessagePackPrimitives.TryWrite(System.Span destination, ushort value, out int bytesWritten) -> bool -static MessagePack.MessagePackPrimitives.TryWriteArrayHeader(System.Span destination, uint count, out int bytesWritten) -> bool -static MessagePack.MessagePackPrimitives.TryWriteBinHeader(System.Span destination, uint length, out int bytesWritten) -> bool -static MessagePack.MessagePackPrimitives.TryWriteExtensionFormatHeader(System.Span destination, MessagePack.ExtensionHeader extensionHeader, out int bytesWritten) -> bool -static MessagePack.MessagePackPrimitives.TryWriteInt16(System.Span destination, short value, out int bytesWritten) -> bool -static MessagePack.MessagePackPrimitives.TryWriteInt32(System.Span destination, int value, out int bytesWritten) -> bool -static MessagePack.MessagePackPrimitives.TryWriteInt64(System.Span destination, long value, out int bytesWritten) -> bool -static MessagePack.MessagePackPrimitives.TryWriteInt8(System.Span destination, sbyte value, out int bytesWritten) -> bool -static MessagePack.MessagePackPrimitives.TryWriteMapHeader(System.Span destination, uint count, out int bytesWritten) -> bool -static MessagePack.MessagePackPrimitives.TryWriteNil(System.Span destination, out int bytesWritten) -> bool -static MessagePack.MessagePackPrimitives.TryWriteStringHeader(System.Span destination, uint byteCount, out int bytesWritten) -> bool -static MessagePack.MessagePackPrimitives.TryWriteUInt16(System.Span destination, ushort value, out int bytesWritten) -> bool -static MessagePack.MessagePackPrimitives.TryWriteUInt32(System.Span destination, uint value, out int bytesWritten) -> bool -static MessagePack.MessagePackPrimitives.TryWriteUInt64(System.Span destination, ulong value, out int bytesWritten) -> bool -static MessagePack.MessagePackPrimitives.TryWriteUInt8(System.Span destination, byte value, out int bytesWritten) -> bool -static readonly MessagePack.Formatters.BooleanListFormatter.Instance -> MessagePack.Formatters.BooleanListFormatter! -static readonly MessagePack.Formatters.ByteListFormatter.Instance -> MessagePack.Formatters.ByteListFormatter! -static readonly MessagePack.Formatters.CharListFormatter.Instance -> MessagePack.Formatters.CharListFormatter! -static readonly MessagePack.Formatters.DoubleListFormatter.Instance -> MessagePack.Formatters.DoubleListFormatter! -static readonly MessagePack.Formatters.Int16ListFormatter.Instance -> MessagePack.Formatters.Int16ListFormatter! -static readonly MessagePack.Formatters.Int32ListFormatter.Instance -> MessagePack.Formatters.Int32ListFormatter! -static readonly MessagePack.Formatters.Int64ListFormatter.Instance -> MessagePack.Formatters.Int64ListFormatter! -static readonly MessagePack.Formatters.Matrix3x2Formatter.Instance -> MessagePack.Formatters.IMessagePackFormatter! -static readonly MessagePack.Formatters.Matrix4x4Formatter.Instance -> MessagePack.Formatters.IMessagePackFormatter! -static readonly MessagePack.Formatters.QuaternionFormatter.Instance -> MessagePack.Formatters.IMessagePackFormatter! -static readonly MessagePack.Formatters.SByteListFormatter.Instance -> MessagePack.Formatters.SByteListFormatter! -static readonly MessagePack.Formatters.SingleListFormatter.Instance -> MessagePack.Formatters.SingleListFormatter! -static readonly MessagePack.Formatters.UInt16ListFormatter.Instance -> MessagePack.Formatters.UInt16ListFormatter! -static readonly MessagePack.Formatters.UInt32ListFormatter.Instance -> MessagePack.Formatters.UInt32ListFormatter! -static readonly MessagePack.Formatters.UInt64ListFormatter.Instance -> MessagePack.Formatters.UInt64ListFormatter! -static readonly MessagePack.Formatters.Vector2Formatter.Instance -> MessagePack.Formatters.IMessagePackFormatter! -static readonly MessagePack.Formatters.Vector3Formatter.Instance -> MessagePack.Formatters.IMessagePackFormatter! -static readonly MessagePack.Formatters.Vector4Formatter.Instance -> MessagePack.Formatters.IMessagePackFormatter! -static readonly MessagePack.Resolvers.DynamicEnumAsStringIgnoreCaseResolver.Instance -> MessagePack.Resolvers.DynamicEnumAsStringIgnoreCaseResolver! -static readonly MessagePack.Resolvers.SourceGeneratedFormatterResolver.Instance -> MessagePack.Resolvers.SourceGeneratedFormatterResolver! -static MessagePack.MessagePackSerializer.Typeless.Deserialize(System.ReadOnlyMemory bytes, MessagePack.MessagePackSerializerOptions? options = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) -> object? -MessagePack.Formatters.Int128Formatter -MessagePack.Formatters.Int128Formatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> System.Int128 -MessagePack.Formatters.Int128Formatter.Serialize(ref MessagePack.MessagePackWriter writer, System.Int128 value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.OrderedDictionaryFormatter -MessagePack.Formatters.OrderedDictionaryFormatter.OrderedDictionaryFormatter() -> void -MessagePack.Formatters.ReadOnlySetFormatter -MessagePack.Formatters.ReadOnlySetFormatter.ReadOnlySetFormatter() -> void -MessagePack.Formatters.RuneFormatter -MessagePack.Formatters.RuneFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> System.Text.Rune -MessagePack.Formatters.RuneFormatter.Serialize(ref MessagePack.MessagePackWriter writer, System.Text.Rune value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.UInt128Formatter -MessagePack.Formatters.UInt128Formatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> System.UInt128 -MessagePack.Formatters.UInt128Formatter.Serialize(ref MessagePack.MessagePackWriter writer, System.UInt128 value, MessagePack.MessagePackSerializerOptions! options) -> void -static readonly MessagePack.Formatters.Int128Formatter.Instance -> MessagePack.Formatters.IMessagePackFormatter! -static readonly MessagePack.Formatters.RuneFormatter.Instance -> MessagePack.Formatters.IMessagePackFormatter! -static readonly MessagePack.Formatters.UInt128Formatter.Instance -> MessagePack.Formatters.IMessagePackFormatter! \ No newline at end of file diff --git a/src/MessagePack/net9.0/PublicAPI.Unshipped.txt b/src/MessagePack/net9.0/PublicAPI.Unshipped.txt deleted file mode 100644 index e69de29bb..000000000 diff --git a/src/MessagePack/netstandard2.0/PublicAPI.Shipped.txt b/src/MessagePack/netstandard2.0/PublicAPI.Shipped.txt deleted file mode 100644 index 611f8e2d3..000000000 --- a/src/MessagePack/netstandard2.0/PublicAPI.Shipped.txt +++ /dev/null @@ -1,1299 +0,0 @@ -#nullable enable -MessagePack.ExtensionHeader -MessagePack.ExtensionHeader.ExtensionHeader(sbyte typeCode, int length) -> void -MessagePack.ExtensionHeader.ExtensionHeader(sbyte typeCode, uint length) -> void -MessagePack.ExtensionHeader.Length.get -> uint -MessagePack.ExtensionHeader.TypeCode.get -> sbyte -MessagePack.ExtensionResult -MessagePack.ExtensionResult.Data.get -> System.Buffers.ReadOnlySequence -MessagePack.ExtensionResult.ExtensionResult(sbyte typeCode, System.Buffers.ReadOnlySequence data) -> void -MessagePack.ExtensionResult.ExtensionResult(sbyte typeCode, System.Memory data) -> void -MessagePack.ExtensionResult.Header.get -> MessagePack.ExtensionHeader -MessagePack.ExtensionResult.TypeCode.get -> sbyte -MessagePack.FormatterNotRegisteredException -MessagePack.FormatterNotRegisteredException.FormatterNotRegisteredException(string? message) -> void -MessagePack.FormatterResolverExtensions -MessagePack.Formatters.ArrayFormatter -MessagePack.Formatters.ArrayFormatter.ArrayFormatter() -> void -MessagePack.Formatters.ArrayFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> T[]? -MessagePack.Formatters.ArrayFormatter.Serialize(ref MessagePack.MessagePackWriter writer, T[]? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.ArraySegmentFormatter -MessagePack.Formatters.ArraySegmentFormatter.ArraySegmentFormatter() -> void -MessagePack.Formatters.ArraySegmentFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> System.ArraySegment -MessagePack.Formatters.ArraySegmentFormatter.Serialize(ref MessagePack.MessagePackWriter writer, System.ArraySegment value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.BigIntegerFormatter -MessagePack.Formatters.BigIntegerFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> System.Numerics.BigInteger -MessagePack.Formatters.BigIntegerFormatter.Serialize(ref MessagePack.MessagePackWriter writer, System.Numerics.BigInteger value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.BitArrayFormatter -MessagePack.Formatters.BitArrayFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> System.Collections.BitArray? -MessagePack.Formatters.BitArrayFormatter.Serialize(ref MessagePack.MessagePackWriter writer, System.Collections.BitArray? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.BooleanArrayFormatter -MessagePack.Formatters.BooleanArrayFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> bool[]? -MessagePack.Formatters.BooleanArrayFormatter.Serialize(ref MessagePack.MessagePackWriter writer, bool[]? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.BooleanFormatter -MessagePack.Formatters.BooleanFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> bool -MessagePack.Formatters.BooleanFormatter.Serialize(ref MessagePack.MessagePackWriter writer, bool value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.ByteArrayFormatter -MessagePack.Formatters.ByteArrayFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> byte[]? -MessagePack.Formatters.ByteArrayFormatter.Serialize(ref MessagePack.MessagePackWriter writer, byte[]? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.ByteArraySegmentFormatter -MessagePack.Formatters.ByteArraySegmentFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> System.ArraySegment -MessagePack.Formatters.ByteArraySegmentFormatter.Serialize(ref MessagePack.MessagePackWriter writer, System.ArraySegment value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.ByteFormatter -MessagePack.Formatters.ByteFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> byte -MessagePack.Formatters.ByteFormatter.Serialize(ref MessagePack.MessagePackWriter writer, byte value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.CharArrayFormatter -MessagePack.Formatters.CharArrayFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> char[]? -MessagePack.Formatters.CharArrayFormatter.Serialize(ref MessagePack.MessagePackWriter writer, char[]? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.CharFormatter -MessagePack.Formatters.CharFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> char -MessagePack.Formatters.CharFormatter.Serialize(ref MessagePack.MessagePackWriter writer, char value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.CollectionFormatterBase -MessagePack.Formatters.CollectionFormatterBase.CollectionFormatterBase() -> void -MessagePack.Formatters.CollectionFormatterBase -MessagePack.Formatters.CollectionFormatterBase.CollectionFormatterBase() -> void -MessagePack.Formatters.CollectionFormatterBase -MessagePack.Formatters.CollectionFormatterBase.CollectionFormatterBase() -> void -MessagePack.Formatters.CollectionFormatterBase.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> TCollection? -MessagePack.Formatters.CollectionFormatterBase.Serialize(ref MessagePack.MessagePackWriter writer, TCollection? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.ComplexFormatter -MessagePack.Formatters.ComplexFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> System.Numerics.Complex -MessagePack.Formatters.ComplexFormatter.Serialize(ref MessagePack.MessagePackWriter writer, System.Numerics.Complex value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.ConcurrentBagFormatter -MessagePack.Formatters.ConcurrentBagFormatter.ConcurrentBagFormatter() -> void -MessagePack.Formatters.ConcurrentDictionaryFormatter -MessagePack.Formatters.ConcurrentDictionaryFormatter.ConcurrentDictionaryFormatter() -> void -MessagePack.Formatters.ConcurrentQueueFormatter -MessagePack.Formatters.ConcurrentQueueFormatter.ConcurrentQueueFormatter() -> void -MessagePack.Formatters.ConcurrentStackFormatter -MessagePack.Formatters.ConcurrentStackFormatter.ConcurrentStackFormatter() -> void -MessagePack.Formatters.DateTimeArrayFormatter -MessagePack.Formatters.DateTimeArrayFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> System.DateTime[]? -MessagePack.Formatters.DateTimeArrayFormatter.Serialize(ref MessagePack.MessagePackWriter writer, System.DateTime[]? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.DateTimeFormatter -MessagePack.Formatters.DateTimeFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> System.DateTime -MessagePack.Formatters.DateTimeFormatter.Serialize(ref MessagePack.MessagePackWriter writer, System.DateTime value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.DateTimeOffsetFormatter -MessagePack.Formatters.DateTimeOffsetFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> System.DateTimeOffset -MessagePack.Formatters.DateTimeOffsetFormatter.Serialize(ref MessagePack.MessagePackWriter writer, System.DateTimeOffset value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.DecimalFormatter -MessagePack.Formatters.DecimalFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> decimal -MessagePack.Formatters.DecimalFormatter.Serialize(ref MessagePack.MessagePackWriter writer, decimal value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.DictionaryFormatter -MessagePack.Formatters.DictionaryFormatter.DictionaryFormatter() -> void -MessagePack.Formatters.DictionaryFormatterBase -MessagePack.Formatters.DictionaryFormatterBase.DictionaryFormatterBase() -> void -MessagePack.Formatters.DictionaryFormatterBase -MessagePack.Formatters.DictionaryFormatterBase.DictionaryFormatterBase() -> void -MessagePack.Formatters.DictionaryFormatterBase -MessagePack.Formatters.DictionaryFormatterBase.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> TDictionary? -MessagePack.Formatters.DictionaryFormatterBase.DictionaryFormatterBase() -> void -MessagePack.Formatters.DictionaryFormatterBase.Serialize(ref MessagePack.MessagePackWriter writer, TDictionary? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.DoubleArrayFormatter -MessagePack.Formatters.DoubleArrayFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> double[]? -MessagePack.Formatters.DoubleArrayFormatter.Serialize(ref MessagePack.MessagePackWriter writer, double[]? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.DoubleFormatter -MessagePack.Formatters.DoubleFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> double -MessagePack.Formatters.DoubleFormatter.Serialize(ref MessagePack.MessagePackWriter writer, double value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.DynamicObjectTypeFallbackFormatter -MessagePack.Formatters.DynamicObjectTypeFallbackFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> object? -MessagePack.Formatters.DynamicObjectTypeFallbackFormatter.Serialize(ref MessagePack.MessagePackWriter writer, object? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.EnumAsStringFormatter -MessagePack.Formatters.EnumAsStringFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> T -MessagePack.Formatters.EnumAsStringFormatter.EnumAsStringFormatter() -> void -MessagePack.Formatters.EnumAsStringFormatter.Serialize(ref MessagePack.MessagePackWriter writer, T value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.ForceByteBlockFormatter -MessagePack.Formatters.ForceByteBlockFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> byte -MessagePack.Formatters.ForceByteBlockFormatter.Serialize(ref MessagePack.MessagePackWriter writer, byte value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.ForceInt16BlockArrayFormatter -MessagePack.Formatters.ForceInt16BlockArrayFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> short[]? -MessagePack.Formatters.ForceInt16BlockArrayFormatter.Serialize(ref MessagePack.MessagePackWriter writer, short[]? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.ForceInt16BlockFormatter -MessagePack.Formatters.ForceInt16BlockFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> short -MessagePack.Formatters.ForceInt16BlockFormatter.Serialize(ref MessagePack.MessagePackWriter writer, short value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.ForceInt32BlockArrayFormatter -MessagePack.Formatters.ForceInt32BlockArrayFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> int[]? -MessagePack.Formatters.ForceInt32BlockArrayFormatter.Serialize(ref MessagePack.MessagePackWriter writer, int[]? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.ForceInt32BlockFormatter -MessagePack.Formatters.ForceInt32BlockFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> int -MessagePack.Formatters.ForceInt32BlockFormatter.Serialize(ref MessagePack.MessagePackWriter writer, int value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.ForceInt64BlockArrayFormatter -MessagePack.Formatters.ForceInt64BlockArrayFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> long[]? -MessagePack.Formatters.ForceInt64BlockArrayFormatter.Serialize(ref MessagePack.MessagePackWriter writer, long[]? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.ForceInt64BlockFormatter -MessagePack.Formatters.ForceInt64BlockFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> long -MessagePack.Formatters.ForceInt64BlockFormatter.Serialize(ref MessagePack.MessagePackWriter writer, long value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.ForceSByteBlockArrayFormatter -MessagePack.Formatters.ForceSByteBlockArrayFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> sbyte[]? -MessagePack.Formatters.ForceSByteBlockArrayFormatter.Serialize(ref MessagePack.MessagePackWriter writer, sbyte[]? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.ForceSByteBlockFormatter -MessagePack.Formatters.ForceSByteBlockFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> sbyte -MessagePack.Formatters.ForceSByteBlockFormatter.Serialize(ref MessagePack.MessagePackWriter writer, sbyte value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.ForceUInt16BlockArrayFormatter -MessagePack.Formatters.ForceUInt16BlockArrayFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> ushort[]? -MessagePack.Formatters.ForceUInt16BlockArrayFormatter.Serialize(ref MessagePack.MessagePackWriter writer, ushort[]? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.ForceUInt16BlockFormatter -MessagePack.Formatters.ForceUInt16BlockFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> ushort -MessagePack.Formatters.ForceUInt16BlockFormatter.Serialize(ref MessagePack.MessagePackWriter writer, ushort value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.ForceUInt32BlockArrayFormatter -MessagePack.Formatters.ForceUInt32BlockArrayFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> uint[]? -MessagePack.Formatters.ForceUInt32BlockArrayFormatter.Serialize(ref MessagePack.MessagePackWriter writer, uint[]? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.ForceUInt32BlockFormatter -MessagePack.Formatters.ForceUInt32BlockFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> uint -MessagePack.Formatters.ForceUInt32BlockFormatter.Serialize(ref MessagePack.MessagePackWriter writer, uint value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.ForceUInt64BlockArrayFormatter -MessagePack.Formatters.ForceUInt64BlockArrayFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> ulong[]? -MessagePack.Formatters.ForceUInt64BlockArrayFormatter.Serialize(ref MessagePack.MessagePackWriter writer, ulong[]? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.ForceUInt64BlockFormatter -MessagePack.Formatters.ForceUInt64BlockFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> ulong -MessagePack.Formatters.ForceUInt64BlockFormatter.Serialize(ref MessagePack.MessagePackWriter writer, ulong value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.FourDimensionalArrayFormatter -MessagePack.Formatters.FourDimensionalArrayFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> T[,,,]? -MessagePack.Formatters.FourDimensionalArrayFormatter.FourDimensionalArrayFormatter() -> void -MessagePack.Formatters.FourDimensionalArrayFormatter.Serialize(ref MessagePack.MessagePackWriter writer, T[,,,]? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.GenericCollectionFormatter -MessagePack.Formatters.GenericCollectionFormatter.GenericCollectionFormatter() -> void -MessagePack.Formatters.GenericDictionaryFormatter -MessagePack.Formatters.GenericDictionaryFormatter.GenericDictionaryFormatter() -> void -MessagePack.Formatters.GenericEnumFormatter -MessagePack.Formatters.GenericEnumFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> T -MessagePack.Formatters.GenericEnumFormatter.GenericEnumFormatter() -> void -MessagePack.Formatters.GenericEnumFormatter.Serialize(ref MessagePack.MessagePackWriter writer, T value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.GuidFormatter -MessagePack.Formatters.GuidFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> System.Guid -MessagePack.Formatters.GuidFormatter.Serialize(ref MessagePack.MessagePackWriter writer, System.Guid value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.HashSetFormatter -MessagePack.Formatters.HashSetFormatter.HashSetFormatter() -> void -MessagePack.Formatters.IMessagePackFormatter -MessagePack.Formatters.IMessagePackFormatter -MessagePack.Formatters.IMessagePackFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> T -MessagePack.Formatters.IMessagePackFormatter.Serialize(ref MessagePack.MessagePackWriter writer, T value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.IgnoreFormatter -MessagePack.Formatters.IgnoreFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> T? -MessagePack.Formatters.IgnoreFormatter.IgnoreFormatter() -> void -MessagePack.Formatters.IgnoreFormatter.Serialize(ref MessagePack.MessagePackWriter writer, T? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.Int16ArrayFormatter -MessagePack.Formatters.Int16ArrayFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> short[]? -MessagePack.Formatters.Int16ArrayFormatter.Serialize(ref MessagePack.MessagePackWriter writer, short[]? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.Int16Formatter -MessagePack.Formatters.Int16Formatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> short -MessagePack.Formatters.Int16Formatter.Serialize(ref MessagePack.MessagePackWriter writer, short value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.Int32ArrayFormatter -MessagePack.Formatters.Int32ArrayFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> int[]? -MessagePack.Formatters.Int32ArrayFormatter.Serialize(ref MessagePack.MessagePackWriter writer, int[]? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.Int32Formatter -MessagePack.Formatters.Int32Formatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> int -MessagePack.Formatters.Int32Formatter.Serialize(ref MessagePack.MessagePackWriter writer, int value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.Int64ArrayFormatter -MessagePack.Formatters.Int64ArrayFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> long[]? -MessagePack.Formatters.Int64ArrayFormatter.Serialize(ref MessagePack.MessagePackWriter writer, long[]? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.Int64Formatter -MessagePack.Formatters.Int64Formatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> long -MessagePack.Formatters.Int64Formatter.Serialize(ref MessagePack.MessagePackWriter writer, long value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.InterfaceCollectionFormatter -MessagePack.Formatters.InterfaceCollectionFormatter.InterfaceCollectionFormatter() -> void -MessagePack.Formatters.InterfaceDictionaryFormatter -MessagePack.Formatters.InterfaceDictionaryFormatter.InterfaceDictionaryFormatter() -> void -MessagePack.Formatters.InterfaceEnumerableFormatter -MessagePack.Formatters.InterfaceEnumerableFormatter.InterfaceEnumerableFormatter() -> void -MessagePack.Formatters.InterfaceGroupingFormatter -MessagePack.Formatters.InterfaceGroupingFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> System.Linq.IGrouping? -MessagePack.Formatters.InterfaceGroupingFormatter.InterfaceGroupingFormatter() -> void -MessagePack.Formatters.InterfaceGroupingFormatter.Serialize(ref MessagePack.MessagePackWriter writer, System.Linq.IGrouping? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.InterfaceListFormatter -MessagePack.Formatters.InterfaceListFormatter.InterfaceListFormatter() -> void -MessagePack.Formatters.InterfaceLookupFormatter -MessagePack.Formatters.InterfaceLookupFormatter.InterfaceLookupFormatter() -> void -MessagePack.Formatters.InterfaceReadOnlyCollectionFormatter -MessagePack.Formatters.InterfaceReadOnlyCollectionFormatter.InterfaceReadOnlyCollectionFormatter() -> void -MessagePack.Formatters.InterfaceReadOnlyDictionaryFormatter -MessagePack.Formatters.InterfaceReadOnlyDictionaryFormatter.InterfaceReadOnlyDictionaryFormatter() -> void -MessagePack.Formatters.InterfaceReadOnlyListFormatter -MessagePack.Formatters.InterfaceReadOnlyListFormatter.InterfaceReadOnlyListFormatter() -> void -MessagePack.Formatters.InterfaceSetFormatter -MessagePack.Formatters.InterfaceSetFormatter.InterfaceSetFormatter() -> void -MessagePack.Formatters.KeyValuePairFormatter -MessagePack.Formatters.KeyValuePairFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> System.Collections.Generic.KeyValuePair -MessagePack.Formatters.KeyValuePairFormatter.KeyValuePairFormatter() -> void -MessagePack.Formatters.KeyValuePairFormatter.Serialize(ref MessagePack.MessagePackWriter writer, System.Collections.Generic.KeyValuePair value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.LazyFormatter -MessagePack.Formatters.LazyFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> System.Lazy? -MessagePack.Formatters.LazyFormatter.LazyFormatter() -> void -MessagePack.Formatters.LazyFormatter.Serialize(ref MessagePack.MessagePackWriter writer, System.Lazy? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.LinkedListFormatter -MessagePack.Formatters.LinkedListFormatter.LinkedListFormatter() -> void -MessagePack.Formatters.ListFormatter -MessagePack.Formatters.ListFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> System.Collections.Generic.List? -MessagePack.Formatters.ListFormatter.ListFormatter() -> void -MessagePack.Formatters.ListFormatter.Serialize(ref MessagePack.MessagePackWriter writer, System.Collections.Generic.List? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.NativeDateTimeArrayFormatter -MessagePack.Formatters.NativeDateTimeArrayFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> System.DateTime[]? -MessagePack.Formatters.NativeDateTimeArrayFormatter.NativeDateTimeArrayFormatter() -> void -MessagePack.Formatters.NativeDateTimeArrayFormatter.Serialize(ref MessagePack.MessagePackWriter writer, System.DateTime[]? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.NativeDateTimeFormatter -MessagePack.Formatters.NativeDateTimeFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> System.DateTime -MessagePack.Formatters.NativeDateTimeFormatter.NativeDateTimeFormatter() -> void -MessagePack.Formatters.NativeDateTimeFormatter.Serialize(ref MessagePack.MessagePackWriter writer, System.DateTime value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.NativeDecimalFormatter -MessagePack.Formatters.NativeDecimalFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> decimal -MessagePack.Formatters.NativeDecimalFormatter.Serialize(ref MessagePack.MessagePackWriter writer, decimal value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.NativeGuidFormatter -MessagePack.Formatters.NativeGuidFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> System.Guid -MessagePack.Formatters.NativeGuidFormatter.Serialize(ref MessagePack.MessagePackWriter writer, System.Guid value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.NilFormatter -MessagePack.Formatters.NilFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> MessagePack.Nil -MessagePack.Formatters.NilFormatter.Serialize(ref MessagePack.MessagePackWriter writer, MessagePack.Nil value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.NonGenericDictionaryFormatter -MessagePack.Formatters.NonGenericDictionaryFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> T? -MessagePack.Formatters.NonGenericDictionaryFormatter.NonGenericDictionaryFormatter() -> void -MessagePack.Formatters.NonGenericDictionaryFormatter.Serialize(ref MessagePack.MessagePackWriter writer, T? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.NonGenericInterfaceDictionaryFormatter -MessagePack.Formatters.NonGenericInterfaceDictionaryFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> System.Collections.IDictionary? -MessagePack.Formatters.NonGenericInterfaceDictionaryFormatter.Serialize(ref MessagePack.MessagePackWriter writer, System.Collections.IDictionary? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.NonGenericInterfaceListFormatter -MessagePack.Formatters.NonGenericInterfaceListFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> System.Collections.IList? -MessagePack.Formatters.NonGenericInterfaceListFormatter.Serialize(ref MessagePack.MessagePackWriter writer, System.Collections.IList? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.NonGenericListFormatter -MessagePack.Formatters.NonGenericListFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> T? -MessagePack.Formatters.NonGenericListFormatter.NonGenericListFormatter() -> void -MessagePack.Formatters.NonGenericListFormatter.Serialize(ref MessagePack.MessagePackWriter writer, T? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.NullableBooleanFormatter -MessagePack.Formatters.NullableBooleanFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> bool? -MessagePack.Formatters.NullableBooleanFormatter.Serialize(ref MessagePack.MessagePackWriter writer, bool? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.NullableByteFormatter -MessagePack.Formatters.NullableByteFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> byte? -MessagePack.Formatters.NullableByteFormatter.Serialize(ref MessagePack.MessagePackWriter writer, byte? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.NullableCharFormatter -MessagePack.Formatters.NullableCharFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> char? -MessagePack.Formatters.NullableCharFormatter.Serialize(ref MessagePack.MessagePackWriter writer, char? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.NullableDateTimeFormatter -MessagePack.Formatters.NullableDateTimeFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> System.DateTime? -MessagePack.Formatters.NullableDateTimeFormatter.Serialize(ref MessagePack.MessagePackWriter writer, System.DateTime? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.NullableDoubleFormatter -MessagePack.Formatters.NullableDoubleFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> double? -MessagePack.Formatters.NullableDoubleFormatter.Serialize(ref MessagePack.MessagePackWriter writer, double? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.NullableForceByteBlockFormatter -MessagePack.Formatters.NullableForceByteBlockFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> byte? -MessagePack.Formatters.NullableForceByteBlockFormatter.Serialize(ref MessagePack.MessagePackWriter writer, byte? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.NullableForceInt16BlockFormatter -MessagePack.Formatters.NullableForceInt16BlockFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> short? -MessagePack.Formatters.NullableForceInt16BlockFormatter.Serialize(ref MessagePack.MessagePackWriter writer, short? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.NullableForceInt32BlockFormatter -MessagePack.Formatters.NullableForceInt32BlockFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> int? -MessagePack.Formatters.NullableForceInt32BlockFormatter.Serialize(ref MessagePack.MessagePackWriter writer, int? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.NullableForceInt64BlockFormatter -MessagePack.Formatters.NullableForceInt64BlockFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> long? -MessagePack.Formatters.NullableForceInt64BlockFormatter.Serialize(ref MessagePack.MessagePackWriter writer, long? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.NullableForceSByteBlockFormatter -MessagePack.Formatters.NullableForceSByteBlockFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> sbyte? -MessagePack.Formatters.NullableForceSByteBlockFormatter.Serialize(ref MessagePack.MessagePackWriter writer, sbyte? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.NullableForceUInt16BlockFormatter -MessagePack.Formatters.NullableForceUInt16BlockFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> ushort? -MessagePack.Formatters.NullableForceUInt16BlockFormatter.Serialize(ref MessagePack.MessagePackWriter writer, ushort? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.NullableForceUInt32BlockFormatter -MessagePack.Formatters.NullableForceUInt32BlockFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> uint? -MessagePack.Formatters.NullableForceUInt32BlockFormatter.Serialize(ref MessagePack.MessagePackWriter writer, uint? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.NullableForceUInt64BlockFormatter -MessagePack.Formatters.NullableForceUInt64BlockFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> ulong? -MessagePack.Formatters.NullableForceUInt64BlockFormatter.Serialize(ref MessagePack.MessagePackWriter writer, ulong? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.NullableFormatter -MessagePack.Formatters.NullableFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> T? -MessagePack.Formatters.NullableFormatter.NullableFormatter() -> void -MessagePack.Formatters.NullableFormatter.Serialize(ref MessagePack.MessagePackWriter writer, T? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.NullableInt16Formatter -MessagePack.Formatters.NullableInt16Formatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> short? -MessagePack.Formatters.NullableInt16Formatter.Serialize(ref MessagePack.MessagePackWriter writer, short? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.NullableInt32Formatter -MessagePack.Formatters.NullableInt32Formatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> int? -MessagePack.Formatters.NullableInt32Formatter.Serialize(ref MessagePack.MessagePackWriter writer, int? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.NullableInt64Formatter -MessagePack.Formatters.NullableInt64Formatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> long? -MessagePack.Formatters.NullableInt64Formatter.Serialize(ref MessagePack.MessagePackWriter writer, long? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.NullableNilFormatter -MessagePack.Formatters.NullableNilFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> MessagePack.Nil? -MessagePack.Formatters.NullableNilFormatter.Serialize(ref MessagePack.MessagePackWriter writer, MessagePack.Nil? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.NullableSByteFormatter -MessagePack.Formatters.NullableSByteFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> sbyte? -MessagePack.Formatters.NullableSByteFormatter.Serialize(ref MessagePack.MessagePackWriter writer, sbyte? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.NullableSingleFormatter -MessagePack.Formatters.NullableSingleFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> float? -MessagePack.Formatters.NullableSingleFormatter.Serialize(ref MessagePack.MessagePackWriter writer, float? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.NullableStringArrayFormatter -MessagePack.Formatters.NullableStringArrayFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> string?[]? -MessagePack.Formatters.NullableStringArrayFormatter.Serialize(ref MessagePack.MessagePackWriter writer, string?[]? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.NullableStringFormatter -MessagePack.Formatters.NullableStringFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> string? -MessagePack.Formatters.NullableStringFormatter.Serialize(ref MessagePack.MessagePackWriter writer, string? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.NullableUInt16Formatter -MessagePack.Formatters.NullableUInt16Formatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> ushort? -MessagePack.Formatters.NullableUInt16Formatter.Serialize(ref MessagePack.MessagePackWriter writer, ushort? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.NullableUInt32Formatter -MessagePack.Formatters.NullableUInt32Formatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> uint? -MessagePack.Formatters.NullableUInt32Formatter.Serialize(ref MessagePack.MessagePackWriter writer, uint? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.NullableUInt64Formatter -MessagePack.Formatters.NullableUInt64Formatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> ulong? -MessagePack.Formatters.NullableUInt64Formatter.Serialize(ref MessagePack.MessagePackWriter writer, ulong? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.ObservableCollectionFormatter -MessagePack.Formatters.ObservableCollectionFormatter.ObservableCollectionFormatter() -> void -MessagePack.Formatters.PrimitiveObjectFormatter -MessagePack.Formatters.PrimitiveObjectFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> object? -MessagePack.Formatters.PrimitiveObjectFormatter.Serialize(ref MessagePack.MessagePackWriter writer, object? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.QueueFormatter -MessagePack.Formatters.QueueFormatter.QueueFormatter() -> void -MessagePack.Formatters.ReadOnlyCollectionFormatter -MessagePack.Formatters.ReadOnlyCollectionFormatter.ReadOnlyCollectionFormatter() -> void -MessagePack.Formatters.ReadOnlyDictionaryFormatter -MessagePack.Formatters.ReadOnlyDictionaryFormatter.ReadOnlyDictionaryFormatter() -> void -MessagePack.Formatters.ReadOnlyObservableCollectionFormatter -MessagePack.Formatters.ReadOnlyObservableCollectionFormatter.ReadOnlyObservableCollectionFormatter() -> void -MessagePack.Formatters.SByteArrayFormatter -MessagePack.Formatters.SByteArrayFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> sbyte[]? -MessagePack.Formatters.SByteArrayFormatter.Serialize(ref MessagePack.MessagePackWriter writer, sbyte[]? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.SByteFormatter -MessagePack.Formatters.SByteFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> sbyte -MessagePack.Formatters.SByteFormatter.Serialize(ref MessagePack.MessagePackWriter writer, sbyte value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.SingleArrayFormatter -MessagePack.Formatters.SingleArrayFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> float[]? -MessagePack.Formatters.SingleArrayFormatter.Serialize(ref MessagePack.MessagePackWriter writer, float[]? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.SingleFormatter -MessagePack.Formatters.SingleFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> float -MessagePack.Formatters.SingleFormatter.Serialize(ref MessagePack.MessagePackWriter writer, float value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.SortedDictionaryFormatter -MessagePack.Formatters.SortedDictionaryFormatter.SortedDictionaryFormatter() -> void -MessagePack.Formatters.SortedListFormatter -MessagePack.Formatters.SortedListFormatter.SortedListFormatter() -> void -MessagePack.Formatters.StackFormatter -MessagePack.Formatters.StackFormatter.StackFormatter() -> void -MessagePack.Formatters.StaticNullableFormatter -MessagePack.Formatters.StaticNullableFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> T? -MessagePack.Formatters.StaticNullableFormatter.Serialize(ref MessagePack.MessagePackWriter writer, T? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.StaticNullableFormatter.StaticNullableFormatter(MessagePack.Formatters.IMessagePackFormatter! underlyingFormatter) -> void -MessagePack.Formatters.StringBuilderFormatter -MessagePack.Formatters.StringBuilderFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> System.Text.StringBuilder? -MessagePack.Formatters.StringBuilderFormatter.Serialize(ref MessagePack.MessagePackWriter writer, System.Text.StringBuilder? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.ThreeDimensionalArrayFormatter -MessagePack.Formatters.ThreeDimensionalArrayFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> T[,,]? -MessagePack.Formatters.ThreeDimensionalArrayFormatter.Serialize(ref MessagePack.MessagePackWriter writer, T[,,]? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.ThreeDimensionalArrayFormatter.ThreeDimensionalArrayFormatter() -> void -MessagePack.Formatters.TimeSpanFormatter -MessagePack.Formatters.TimeSpanFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> System.TimeSpan -MessagePack.Formatters.TimeSpanFormatter.Serialize(ref MessagePack.MessagePackWriter writer, System.TimeSpan value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.TupleFormatter -MessagePack.Formatters.TupleFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> System.Tuple? -MessagePack.Formatters.TupleFormatter.Serialize(ref MessagePack.MessagePackWriter writer, System.Tuple? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.TupleFormatter.TupleFormatter() -> void -MessagePack.Formatters.TupleFormatter -MessagePack.Formatters.TupleFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> System.Tuple? -MessagePack.Formatters.TupleFormatter.Serialize(ref MessagePack.MessagePackWriter writer, System.Tuple? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.TupleFormatter.TupleFormatter() -> void -MessagePack.Formatters.TupleFormatter -MessagePack.Formatters.TupleFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> System.Tuple? -MessagePack.Formatters.TupleFormatter.Serialize(ref MessagePack.MessagePackWriter writer, System.Tuple? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.TupleFormatter.TupleFormatter() -> void -MessagePack.Formatters.TupleFormatter -MessagePack.Formatters.TupleFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> System.Tuple? -MessagePack.Formatters.TupleFormatter.Serialize(ref MessagePack.MessagePackWriter writer, System.Tuple? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.TupleFormatter.TupleFormatter() -> void -MessagePack.Formatters.TupleFormatter -MessagePack.Formatters.TupleFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> System.Tuple? -MessagePack.Formatters.TupleFormatter.Serialize(ref MessagePack.MessagePackWriter writer, System.Tuple? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.TupleFormatter.TupleFormatter() -> void -MessagePack.Formatters.TupleFormatter -MessagePack.Formatters.TupleFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> System.Tuple? -MessagePack.Formatters.TupleFormatter.Serialize(ref MessagePack.MessagePackWriter writer, System.Tuple? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.TupleFormatter.TupleFormatter() -> void -MessagePack.Formatters.TupleFormatter -MessagePack.Formatters.TupleFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> System.Tuple? -MessagePack.Formatters.TupleFormatter.Serialize(ref MessagePack.MessagePackWriter writer, System.Tuple? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.TupleFormatter.TupleFormatter() -> void -MessagePack.Formatters.TupleFormatter -MessagePack.Formatters.TupleFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> System.Tuple? -MessagePack.Formatters.TupleFormatter.Serialize(ref MessagePack.MessagePackWriter writer, System.Tuple? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.TupleFormatter.TupleFormatter() -> void -MessagePack.Formatters.TwoDimensionalArrayFormatter -MessagePack.Formatters.TwoDimensionalArrayFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> T[,]? -MessagePack.Formatters.TwoDimensionalArrayFormatter.Serialize(ref MessagePack.MessagePackWriter writer, T[,]? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.TwoDimensionalArrayFormatter.TwoDimensionalArrayFormatter() -> void -MessagePack.Formatters.TypelessFormatter -MessagePack.Formatters.TypelessFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> object? -MessagePack.Formatters.TypelessFormatter.Serialize(ref MessagePack.MessagePackWriter writer, object? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.UInt16ArrayFormatter -MessagePack.Formatters.UInt16ArrayFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> ushort[]? -MessagePack.Formatters.UInt16ArrayFormatter.Serialize(ref MessagePack.MessagePackWriter writer, ushort[]? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.UInt16Formatter -MessagePack.Formatters.UInt16Formatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> ushort -MessagePack.Formatters.UInt16Formatter.Serialize(ref MessagePack.MessagePackWriter writer, ushort value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.UInt32ArrayFormatter -MessagePack.Formatters.UInt32ArrayFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> uint[]? -MessagePack.Formatters.UInt32ArrayFormatter.Serialize(ref MessagePack.MessagePackWriter writer, uint[]? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.UInt32Formatter -MessagePack.Formatters.UInt32Formatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> uint -MessagePack.Formatters.UInt32Formatter.Serialize(ref MessagePack.MessagePackWriter writer, uint value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.UInt64ArrayFormatter -MessagePack.Formatters.UInt64ArrayFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> ulong[]? -MessagePack.Formatters.UInt64ArrayFormatter.Serialize(ref MessagePack.MessagePackWriter writer, ulong[]? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.UInt64Formatter -MessagePack.Formatters.UInt64Formatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> ulong -MessagePack.Formatters.UInt64Formatter.Serialize(ref MessagePack.MessagePackWriter writer, ulong value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.UriFormatter -MessagePack.Formatters.UriFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> System.Uri? -MessagePack.Formatters.UriFormatter.Serialize(ref MessagePack.MessagePackWriter writer, System.Uri? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.ValueTupleFormatter -MessagePack.Formatters.ValueTupleFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> System.ValueTuple -MessagePack.Formatters.ValueTupleFormatter.Serialize(ref MessagePack.MessagePackWriter writer, System.ValueTuple value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.ValueTupleFormatter.ValueTupleFormatter() -> void -MessagePack.Formatters.ValueTupleFormatter -MessagePack.Formatters.ValueTupleFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> (T1, T2, T3, T4, T5, T6, T7) -MessagePack.Formatters.ValueTupleFormatter.Serialize(ref MessagePack.MessagePackWriter writer, (T1, T2, T3, T4, T5, T6, T7) value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.ValueTupleFormatter.ValueTupleFormatter() -> void -MessagePack.Formatters.ValueTupleFormatter -MessagePack.Formatters.ValueTupleFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> (T1, T2, T3, T4, T5, T6) -MessagePack.Formatters.ValueTupleFormatter.Serialize(ref MessagePack.MessagePackWriter writer, (T1, T2, T3, T4, T5, T6) value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.ValueTupleFormatter.ValueTupleFormatter() -> void -MessagePack.Formatters.ValueTupleFormatter -MessagePack.Formatters.ValueTupleFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> (T1, T2, T3, T4, T5) -MessagePack.Formatters.ValueTupleFormatter.Serialize(ref MessagePack.MessagePackWriter writer, (T1, T2, T3, T4, T5) value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.ValueTupleFormatter.ValueTupleFormatter() -> void -MessagePack.Formatters.ValueTupleFormatter -MessagePack.Formatters.ValueTupleFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> (T1, T2, T3, T4) -MessagePack.Formatters.ValueTupleFormatter.Serialize(ref MessagePack.MessagePackWriter writer, (T1, T2, T3, T4) value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.ValueTupleFormatter.ValueTupleFormatter() -> void -MessagePack.Formatters.ValueTupleFormatter -MessagePack.Formatters.ValueTupleFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> (T1, T2, T3) -MessagePack.Formatters.ValueTupleFormatter.Serialize(ref MessagePack.MessagePackWriter writer, (T1, T2, T3) value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.ValueTupleFormatter.ValueTupleFormatter() -> void -MessagePack.Formatters.ValueTupleFormatter -MessagePack.Formatters.ValueTupleFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> (T1, T2) -MessagePack.Formatters.ValueTupleFormatter.Serialize(ref MessagePack.MessagePackWriter writer, (T1, T2) value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.ValueTupleFormatter.ValueTupleFormatter() -> void -MessagePack.Formatters.ValueTupleFormatter -MessagePack.Formatters.ValueTupleFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> System.ValueTuple -MessagePack.Formatters.ValueTupleFormatter.Serialize(ref MessagePack.MessagePackWriter writer, System.ValueTuple value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.ValueTupleFormatter.ValueTupleFormatter() -> void -MessagePack.Formatters.VersionFormatter -MessagePack.Formatters.VersionFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> System.Version? -MessagePack.Formatters.VersionFormatter.Serialize(ref MessagePack.MessagePackWriter writer, System.Version? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.IFormatterResolver -MessagePack.IFormatterResolver.GetFormatter() -> MessagePack.Formatters.IMessagePackFormatter? -MessagePack.Internal.AutomataDictionary -MessagePack.Internal.AutomataDictionary.Add(string! str, int value) -> void -MessagePack.Internal.AutomataDictionary.AutomataDictionary() -> void -MessagePack.Internal.AutomataDictionary.EmitMatch(System.Reflection.Emit.ILGenerator! il, System.Reflection.Emit.LocalBuilder! bytesSpan, System.Reflection.Emit.LocalBuilder! key, System.Action>! onFound, System.Action! onNotFound) -> void -MessagePack.Internal.AutomataDictionary.GetEnumerator() -> System.Collections.Generic.IEnumerator>! -MessagePack.Internal.AutomataDictionary.TryGetValue(System.ReadOnlySpan bytes, out int value) -> bool -MessagePack.Internal.AutomataDictionary.TryGetValue(in System.Buffers.ReadOnlySequence bytes, out int value) -> bool -MessagePack.Internal.AutomataKeyGen -MessagePack.Internal.ByteArrayStringHashTable -MessagePack.Internal.ByteArrayStringHashTable.Add(byte[]! key, int value) -> void -MessagePack.Internal.ByteArrayStringHashTable.Add(string! key, int value) -> void -MessagePack.Internal.ByteArrayStringHashTable.ByteArrayStringHashTable(int capacity) -> void -MessagePack.Internal.ByteArrayStringHashTable.ByteArrayStringHashTable(int capacity, float loadFactor) -> void -MessagePack.Internal.ByteArrayStringHashTable.GetEnumerator() -> System.Collections.Generic.IEnumerator>! -MessagePack.Internal.ByteArrayStringHashTable.TryGetValue(System.ReadOnlySpan key, out int value) -> bool -MessagePack.Internal.ByteArrayStringHashTable.TryGetValue(in System.Buffers.ReadOnlySequence key, out int value) -> bool -MessagePack.Internal.CodeGenHelpers -MessagePack.Internal.RuntimeTypeHandleEqualityComparer -MessagePack.Internal.RuntimeTypeHandleEqualityComparer.Equals(System.RuntimeTypeHandle x, System.RuntimeTypeHandle y) -> bool -MessagePack.Internal.RuntimeTypeHandleEqualityComparer.GetHashCode(System.RuntimeTypeHandle obj) -> int -MessagePack.Internal.UnsafeMemory -MessagePack.Internal.UnsafeMemory32 -MessagePack.Internal.UnsafeMemory64 -MessagePack.MessagePackCode -MessagePack.MessagePackCompression -MessagePack.MessagePackCompression.Lz4Block = 1 -> MessagePack.MessagePackCompression -MessagePack.MessagePackCompression.Lz4BlockArray = 2 -> MessagePack.MessagePackCompression -MessagePack.MessagePackCompression.None = 0 -> MessagePack.MessagePackCompression -MessagePack.MessagePackRange -MessagePack.MessagePackReader -MessagePack.MessagePackReader.CancellationToken.get -> System.Threading.CancellationToken -MessagePack.MessagePackReader.CancellationToken.set -> void -MessagePack.MessagePackReader.Clone(scoped in System.Buffers.ReadOnlySequence readOnlySequence) -> MessagePack.MessagePackReader -MessagePack.MessagePackReader.Consumed.get -> long -MessagePack.MessagePackReader.CreatePeekReader() -> MessagePack.MessagePackReader -MessagePack.MessagePackReader.End.get -> bool -MessagePack.MessagePackReader.IsNil.get -> bool -MessagePack.MessagePackReader.MessagePackReader(System.ReadOnlyMemory memory) -> void -MessagePack.MessagePackReader.MessagePackReader(scoped in System.Buffers.ReadOnlySequence readOnlySequence) -> void -MessagePack.MessagePackReader.NextCode.get -> byte -MessagePack.MessagePackReader.NextMessagePackType.get -> MessagePack.MessagePackType -MessagePack.MessagePackReader.Position.get -> System.SequencePosition -MessagePack.MessagePackReader.ReadArrayHeader() -> int -MessagePack.MessagePackReader.ReadBoolean() -> bool -MessagePack.MessagePackReader.ReadByte() -> byte -MessagePack.MessagePackReader.ReadBytes() -> System.Buffers.ReadOnlySequence? -MessagePack.MessagePackReader.ReadChar() -> char -MessagePack.MessagePackReader.ReadDateTime() -> System.DateTime -MessagePack.MessagePackReader.ReadDouble() -> double -MessagePack.MessagePackReader.ReadExtensionFormat() -> MessagePack.ExtensionResult -MessagePack.MessagePackReader.ReadExtensionFormatHeader() -> MessagePack.ExtensionHeader -MessagePack.MessagePackReader.ReadInt16() -> short -MessagePack.MessagePackReader.ReadInt32() -> int -MessagePack.MessagePackReader.ReadInt64() -> long -MessagePack.MessagePackReader.ReadMapHeader() -> int -MessagePack.MessagePackReader.ReadNil() -> MessagePack.Nil -MessagePack.MessagePackReader.ReadRaw() -> System.Buffers.ReadOnlySequence -MessagePack.MessagePackReader.ReadRaw(long length) -> System.Buffers.ReadOnlySequence -MessagePack.MessagePackReader.ReadSByte() -> sbyte -MessagePack.MessagePackReader.ReadSingle() -> float -MessagePack.MessagePackReader.ReadString() -> string? -MessagePack.MessagePackReader.ReadStringSequence() -> System.Buffers.ReadOnlySequence? -MessagePack.MessagePackReader.ReadUInt16() -> ushort -MessagePack.MessagePackReader.ReadUInt32() -> uint -MessagePack.MessagePackReader.ReadUInt64() -> ulong -MessagePack.MessagePackReader.Sequence.get -> System.Buffers.ReadOnlySequence -MessagePack.MessagePackReader.Skip() -> void -MessagePack.MessagePackReader.TryReadNil() -> bool -MessagePack.MessagePackReader.TryReadStringSpan(out System.ReadOnlySpan span) -> bool -MessagePack.MessagePackSerializationException -MessagePack.MessagePackSerializationException.MessagePackSerializationException() -> void -MessagePack.MessagePackSerializationException.MessagePackSerializationException(System.Runtime.Serialization.SerializationInfo! info, System.Runtime.Serialization.StreamingContext context) -> void -MessagePack.MessagePackSerializationException.MessagePackSerializationException(string? message) -> void -MessagePack.MessagePackSerializationException.MessagePackSerializationException(string? message, System.Exception? inner) -> void -MessagePack.MessagePackSerializer -MessagePack.MessagePackSerializer.Typeless -MessagePack.MessagePackSerializerOptions -MessagePack.MessagePackSerializerOptions.AllowAssemblyVersionMismatch.get -> bool -MessagePack.MessagePackSerializerOptions.Compression.get -> MessagePack.MessagePackCompression -MessagePack.MessagePackSerializerOptions.MessagePackSerializerOptions(MessagePack.IFormatterResolver! resolver) -> void -MessagePack.MessagePackSerializerOptions.MessagePackSerializerOptions(MessagePack.MessagePackSerializerOptions! copyFrom) -> void -MessagePack.MessagePackSerializerOptions.OldSpec.get -> bool? -MessagePack.MessagePackSerializerOptions.OmitAssemblyVersion.get -> bool -MessagePack.MessagePackSerializerOptions.Resolver.get -> MessagePack.IFormatterResolver! -MessagePack.MessagePackSerializerOptions.WithAllowAssemblyVersionMismatch(bool allowAssemblyVersionMismatch) -> MessagePack.MessagePackSerializerOptions! -MessagePack.MessagePackSerializerOptions.WithCompression(MessagePack.MessagePackCompression compression) -> MessagePack.MessagePackSerializerOptions! -MessagePack.MessagePackSerializerOptions.WithOldSpec(bool? oldSpec = true) -> MessagePack.MessagePackSerializerOptions! -MessagePack.MessagePackSerializerOptions.WithOmitAssemblyVersion(bool omitAssemblyVersion) -> MessagePack.MessagePackSerializerOptions! -MessagePack.MessagePackSerializerOptions.WithResolver(MessagePack.IFormatterResolver! resolver) -> MessagePack.MessagePackSerializerOptions! -MessagePack.MessagePackStreamReader -MessagePack.MessagePackStreamReader.Dispose() -> void -MessagePack.MessagePackStreamReader.MessagePackStreamReader(System.IO.Stream! stream) -> void -MessagePack.MessagePackStreamReader.ReadAsync(System.Threading.CancellationToken cancellationToken) -> System.Threading.Tasks.ValueTask?> -MessagePack.MessagePackStreamReader.RemainingBytes.get -> System.Buffers.ReadOnlySequence -MessagePack.MessagePackType -MessagePack.MessagePackType.Array = 7 -> MessagePack.MessagePackType -MessagePack.MessagePackType.Binary = 6 -> MessagePack.MessagePackType -MessagePack.MessagePackType.Boolean = 3 -> MessagePack.MessagePackType -MessagePack.MessagePackType.Extension = 9 -> MessagePack.MessagePackType -MessagePack.MessagePackType.Float = 4 -> MessagePack.MessagePackType -MessagePack.MessagePackType.Integer = 1 -> MessagePack.MessagePackType -MessagePack.MessagePackType.Map = 8 -> MessagePack.MessagePackType -MessagePack.MessagePackType.Nil = 2 -> MessagePack.MessagePackType -MessagePack.MessagePackType.String = 5 -> MessagePack.MessagePackType -MessagePack.MessagePackType.Unknown = 0 -> MessagePack.MessagePackType -MessagePack.MessagePackWriter -MessagePack.MessagePackWriter.Advance(int length) -> void -MessagePack.MessagePackWriter.CancellationToken.get -> System.Threading.CancellationToken -MessagePack.MessagePackWriter.CancellationToken.set -> void -MessagePack.MessagePackWriter.Clone(System.Buffers.IBufferWriter! writer) -> MessagePack.MessagePackWriter -MessagePack.MessagePackWriter.Flush() -> void -MessagePack.MessagePackWriter.GetSpan(int length) -> System.Span -MessagePack.MessagePackWriter.MessagePackWriter(System.Buffers.IBufferWriter! writer) -> void -MessagePack.MessagePackWriter.OldSpec.get -> bool -MessagePack.MessagePackWriter.OldSpec.set -> void -MessagePack.MessagePackWriter.Write(System.DateTime dateTime) -> void -MessagePack.MessagePackWriter.Write(System.ReadOnlySpan src) -> void -MessagePack.MessagePackWriter.Write(System.ReadOnlySpan value) -> void -MessagePack.MessagePackWriter.Write(bool value) -> void -MessagePack.MessagePackWriter.Write(byte value) -> void -MessagePack.MessagePackWriter.Write(byte[]? src) -> void -MessagePack.MessagePackWriter.Write(char value) -> void -MessagePack.MessagePackWriter.Write(double value) -> void -MessagePack.MessagePackWriter.Write(float value) -> void -MessagePack.MessagePackWriter.Write(in System.Buffers.ReadOnlySequence src) -> void -MessagePack.MessagePackWriter.Write(int value) -> void -MessagePack.MessagePackWriter.Write(long value) -> void -MessagePack.MessagePackWriter.Write(sbyte value) -> void -MessagePack.MessagePackWriter.Write(short value) -> void -MessagePack.MessagePackWriter.Write(string? value) -> void -MessagePack.MessagePackWriter.Write(uint value) -> void -MessagePack.MessagePackWriter.Write(ulong value) -> void -MessagePack.MessagePackWriter.Write(ushort value) -> void -MessagePack.MessagePackWriter.WriteArrayHeader(int count) -> void -MessagePack.MessagePackWriter.WriteArrayHeader(uint count) -> void -MessagePack.MessagePackWriter.WriteExtensionFormat(MessagePack.ExtensionResult extensionData) -> void -MessagePack.MessagePackWriter.WriteExtensionFormatHeader(MessagePack.ExtensionHeader extensionHeader) -> void -MessagePack.MessagePackWriter.WriteInt16(short value) -> void -MessagePack.MessagePackWriter.WriteInt32(int value) -> void -MessagePack.MessagePackWriter.WriteInt64(long value) -> void -MessagePack.MessagePackWriter.WriteInt8(sbyte value) -> void -MessagePack.MessagePackWriter.WriteMapHeader(int count) -> void -MessagePack.MessagePackWriter.WriteMapHeader(uint count) -> void -MessagePack.MessagePackWriter.WriteNil() -> void -MessagePack.MessagePackWriter.WriteRaw(System.ReadOnlySpan rawMessagePackBlock) -> void -MessagePack.MessagePackWriter.WriteRaw(in System.Buffers.ReadOnlySequence rawMessagePackBlock) -> void -MessagePack.MessagePackWriter.WriteString(System.ReadOnlySpan utf8stringBytes) -> void -MessagePack.MessagePackWriter.WriteString(in System.Buffers.ReadOnlySequence utf8stringBytes) -> void -MessagePack.MessagePackWriter.WriteUInt16(ushort value) -> void -MessagePack.MessagePackWriter.WriteUInt32(uint value) -> void -MessagePack.MessagePackWriter.WriteUInt64(ulong value) -> void -MessagePack.MessagePackWriter.WriteUInt8(byte value) -> void -MessagePack.Nil -MessagePack.Nil.Equals(MessagePack.Nil other) -> bool -MessagePack.Nil.Nil() -> void -MessagePack.ReservedMessagePackExtensionTypeCode -MessagePack.Resolvers.AttributeFormatterResolver -MessagePack.Resolvers.AttributeFormatterResolver.GetFormatter() -> MessagePack.Formatters.IMessagePackFormatter? -MessagePack.Resolvers.BuiltinResolver -MessagePack.Resolvers.BuiltinResolver.GetFormatter() -> MessagePack.Formatters.IMessagePackFormatter? -MessagePack.Resolvers.CompositeResolver -MessagePack.Resolvers.ContractlessStandardResolver -MessagePack.Resolvers.ContractlessStandardResolver.GetFormatter() -> MessagePack.Formatters.IMessagePackFormatter? -MessagePack.Resolvers.ContractlessStandardResolverAllowPrivate -MessagePack.Resolvers.ContractlessStandardResolverAllowPrivate.GetFormatter() -> MessagePack.Formatters.IMessagePackFormatter? -MessagePack.Resolvers.DynamicContractlessObjectResolver -MessagePack.Resolvers.DynamicContractlessObjectResolver.GetFormatter() -> MessagePack.Formatters.IMessagePackFormatter? -MessagePack.Resolvers.DynamicContractlessObjectResolverAllowPrivate -MessagePack.Resolvers.DynamicContractlessObjectResolverAllowPrivate.DynamicContractlessObjectResolverAllowPrivate() -> void -MessagePack.Resolvers.DynamicContractlessObjectResolverAllowPrivate.GetFormatter() -> MessagePack.Formatters.IMessagePackFormatter? -MessagePack.Resolvers.DynamicEnumAsStringResolver -MessagePack.Resolvers.DynamicEnumAsStringResolver.GetFormatter() -> MessagePack.Formatters.IMessagePackFormatter? -MessagePack.Resolvers.DynamicEnumResolver -MessagePack.Resolvers.DynamicEnumResolver.GetFormatter() -> MessagePack.Formatters.IMessagePackFormatter? -MessagePack.Resolvers.DynamicGenericResolver -MessagePack.Resolvers.DynamicGenericResolver.GetFormatter() -> MessagePack.Formatters.IMessagePackFormatter? -MessagePack.Resolvers.DynamicObjectResolver -MessagePack.Resolvers.DynamicObjectResolver.GetFormatter() -> MessagePack.Formatters.IMessagePackFormatter? -MessagePack.Resolvers.DynamicObjectResolverAllowPrivate -MessagePack.Resolvers.DynamicObjectResolverAllowPrivate.GetFormatter() -> MessagePack.Formatters.IMessagePackFormatter? -MessagePack.Resolvers.DynamicUnionResolver -MessagePack.Resolvers.DynamicUnionResolver.GetFormatter() -> MessagePack.Formatters.IMessagePackFormatter? -MessagePack.Resolvers.NativeDateTimeResolver -MessagePack.Resolvers.NativeDateTimeResolver.GetFormatter() -> MessagePack.Formatters.IMessagePackFormatter? -MessagePack.Resolvers.NativeDecimalResolver -MessagePack.Resolvers.NativeDecimalResolver.GetFormatter() -> MessagePack.Formatters.IMessagePackFormatter? -MessagePack.Resolvers.NativeGuidResolver -MessagePack.Resolvers.NativeGuidResolver.GetFormatter() -> MessagePack.Formatters.IMessagePackFormatter? -MessagePack.Resolvers.PrimitiveObjectResolver -MessagePack.Resolvers.PrimitiveObjectResolver.GetFormatter() -> MessagePack.Formatters.IMessagePackFormatter? -MessagePack.Resolvers.StandardResolver -MessagePack.Resolvers.StandardResolver.GetFormatter() -> MessagePack.Formatters.IMessagePackFormatter? -MessagePack.Resolvers.StandardResolverAllowPrivate -MessagePack.Resolvers.StandardResolverAllowPrivate.GetFormatter() -> MessagePack.Formatters.IMessagePackFormatter? -MessagePack.Resolvers.StaticCompositeResolver -MessagePack.Resolvers.StaticCompositeResolver.GetFormatter() -> MessagePack.Formatters.IMessagePackFormatter? -MessagePack.Resolvers.StaticCompositeResolver.Register(System.Collections.Generic.IReadOnlyList! formatters, System.Collections.Generic.IReadOnlyList! resolvers) -> void -MessagePack.Resolvers.StaticCompositeResolver.Register(params MessagePack.Formatters.IMessagePackFormatter![]! formatters) -> void -MessagePack.Resolvers.StaticCompositeResolver.Register(params MessagePack.IFormatterResolver![]! resolvers) -> void -MessagePack.Resolvers.TypelessContractlessStandardResolver -MessagePack.Resolvers.TypelessContractlessStandardResolver.GetFormatter() -> MessagePack.Formatters.IMessagePackFormatter? -MessagePack.Resolvers.TypelessContractlessStandardResolver.TypelessContractlessStandardResolver() -> void -MessagePack.Resolvers.TypelessObjectResolver -MessagePack.Resolvers.TypelessObjectResolver.GetFormatter() -> MessagePack.Formatters.IMessagePackFormatter? -MessagePack.TinyJsonException -MessagePack.TinyJsonException.TinyJsonException(string! message) -> void -abstract MessagePack.Formatters.CollectionFormatterBase.Add(TIntermediate collection, int index, TElement value, MessagePack.MessagePackSerializerOptions! options) -> void -abstract MessagePack.Formatters.CollectionFormatterBase.Complete(TIntermediate intermediateCollection) -> TCollection -abstract MessagePack.Formatters.CollectionFormatterBase.Create(int count, MessagePack.MessagePackSerializerOptions! options) -> TIntermediate -abstract MessagePack.Formatters.CollectionFormatterBase.GetSourceEnumerator(TCollection source) -> TEnumerator -abstract MessagePack.Formatters.DictionaryFormatterBase.Add(TIntermediate collection, int index, TKey key, TValue value, MessagePack.MessagePackSerializerOptions! options) -> void -abstract MessagePack.Formatters.DictionaryFormatterBase.Complete(TIntermediate intermediateCollection) -> TDictionary! -abstract MessagePack.Formatters.DictionaryFormatterBase.Create(int count, MessagePack.MessagePackSerializerOptions! options) -> TIntermediate -abstract MessagePack.Formatters.DictionaryFormatterBase.GetSourceEnumerator(TDictionary! source) -> TEnumerator -const MessagePack.MessagePackCode.Array16 = 220 -> byte -const MessagePack.MessagePackCode.Array32 = 221 -> byte -const MessagePack.MessagePackCode.Bin16 = 197 -> byte -const MessagePack.MessagePackCode.Bin32 = 198 -> byte -const MessagePack.MessagePackCode.Bin8 = 196 -> byte -const MessagePack.MessagePackCode.Ext16 = 200 -> byte -const MessagePack.MessagePackCode.Ext32 = 201 -> byte -const MessagePack.MessagePackCode.Ext8 = 199 -> byte -const MessagePack.MessagePackCode.False = 194 -> byte -const MessagePack.MessagePackCode.FixExt1 = 212 -> byte -const MessagePack.MessagePackCode.FixExt16 = 216 -> byte -const MessagePack.MessagePackCode.FixExt2 = 213 -> byte -const MessagePack.MessagePackCode.FixExt4 = 214 -> byte -const MessagePack.MessagePackCode.FixExt8 = 215 -> byte -const MessagePack.MessagePackCode.Float32 = 202 -> byte -const MessagePack.MessagePackCode.Float64 = 203 -> byte -const MessagePack.MessagePackCode.Int16 = 209 -> byte -const MessagePack.MessagePackCode.Int32 = 210 -> byte -const MessagePack.MessagePackCode.Int64 = 211 -> byte -const MessagePack.MessagePackCode.Int8 = 208 -> byte -const MessagePack.MessagePackCode.Map16 = 222 -> byte -const MessagePack.MessagePackCode.Map32 = 223 -> byte -const MessagePack.MessagePackCode.MaxFixArray = 159 -> byte -const MessagePack.MessagePackCode.MaxFixInt = 127 -> byte -const MessagePack.MessagePackCode.MaxFixMap = 143 -> byte -const MessagePack.MessagePackCode.MaxFixStr = 191 -> byte -const MessagePack.MessagePackCode.MaxNegativeFixInt = 255 -> byte -const MessagePack.MessagePackCode.MinFixArray = 144 -> byte -const MessagePack.MessagePackCode.MinFixInt = 0 -> byte -const MessagePack.MessagePackCode.MinFixMap = 128 -> byte -const MessagePack.MessagePackCode.MinFixStr = 160 -> byte -const MessagePack.MessagePackCode.MinNegativeFixInt = 224 -> byte -const MessagePack.MessagePackCode.NeverUsed = 193 -> byte -const MessagePack.MessagePackCode.Nil = 192 -> byte -const MessagePack.MessagePackCode.Str16 = 218 -> byte -const MessagePack.MessagePackCode.Str32 = 219 -> byte -const MessagePack.MessagePackCode.Str8 = 217 -> byte -const MessagePack.MessagePackCode.True = 195 -> byte -const MessagePack.MessagePackCode.UInt16 = 205 -> byte -const MessagePack.MessagePackCode.UInt32 = 206 -> byte -const MessagePack.MessagePackCode.UInt64 = 207 -> byte -const MessagePack.MessagePackCode.UInt8 = 204 -> byte -const MessagePack.MessagePackRange.MaxFixArrayCount = 15 -> int -const MessagePack.MessagePackRange.MaxFixMapCount = 15 -> int -const MessagePack.MessagePackRange.MaxFixNegativeInt = -1 -> int -const MessagePack.MessagePackRange.MaxFixPositiveInt = 127 -> int -const MessagePack.MessagePackRange.MaxFixStringLength = 31 -> int -const MessagePack.MessagePackRange.MinFixNegativeInt = -32 -> int -const MessagePack.MessagePackRange.MinFixStringLength = 0 -> int -const MessagePack.ReservedMessagePackExtensionTypeCode.DateTime = -1 -> sbyte -override MessagePack.Formatters.CollectionFormatterBase.GetSourceEnumerator(TCollection source) -> System.Collections.Generic.IEnumerator! -override MessagePack.Formatters.DictionaryFormatterBase.Complete(TDictionary! intermediateCollection) -> TDictionary! -override MessagePack.Formatters.DictionaryFormatterBase.GetSourceEnumerator(TDictionary! source) -> System.Collections.Generic.IEnumerator>! -override MessagePack.Internal.AutomataDictionary.ToString() -> string! -override MessagePack.Nil.Equals(object? obj) -> bool -override MessagePack.Nil.GetHashCode() -> int -override MessagePack.Nil.ToString() -> string! -override sealed MessagePack.Formatters.CollectionFormatterBase.Complete(TCollection intermediateCollection) -> TCollection -static MessagePack.FormatterResolverExtensions.GetFormatterDynamic(this MessagePack.IFormatterResolver! resolver, System.Type! type) -> object? -static MessagePack.FormatterResolverExtensions.GetFormatterWithVerify(this MessagePack.IFormatterResolver! resolver) -> MessagePack.Formatters.IMessagePackFormatter! -static MessagePack.Formatters.PrimitiveObjectFormatter.IsSupportedType(System.Type! type, System.Reflection.TypeInfo! typeInfo, object! value) -> bool -static MessagePack.Internal.AutomataKeyGen.GetKey(ref System.ReadOnlySpan span) -> ulong -static MessagePack.Internal.CodeGenHelpers.GetArrayFromNullableSequence(in System.Buffers.ReadOnlySequence? sequence) -> byte[]? -static MessagePack.Internal.CodeGenHelpers.GetEncodedStringBytes(string! value) -> byte[]! -static MessagePack.Internal.CodeGenHelpers.GetSpanFromSequence(scoped in System.Buffers.ReadOnlySequence sequence) -> System.ReadOnlySpan -static MessagePack.Internal.CodeGenHelpers.ReadStringSpan(scoped ref MessagePack.MessagePackReader reader) -> System.ReadOnlySpan -static MessagePack.Internal.UnsafeMemory32.WriteRaw1(ref MessagePack.MessagePackWriter writer, System.ReadOnlySpan src) -> void -static MessagePack.Internal.UnsafeMemory32.WriteRaw10(ref MessagePack.MessagePackWriter writer, System.ReadOnlySpan src) -> void -static MessagePack.Internal.UnsafeMemory32.WriteRaw11(ref MessagePack.MessagePackWriter writer, System.ReadOnlySpan src) -> void -static MessagePack.Internal.UnsafeMemory32.WriteRaw12(ref MessagePack.MessagePackWriter writer, System.ReadOnlySpan src) -> void -static MessagePack.Internal.UnsafeMemory32.WriteRaw13(ref MessagePack.MessagePackWriter writer, System.ReadOnlySpan src) -> void -static MessagePack.Internal.UnsafeMemory32.WriteRaw14(ref MessagePack.MessagePackWriter writer, System.ReadOnlySpan src) -> void -static MessagePack.Internal.UnsafeMemory32.WriteRaw15(ref MessagePack.MessagePackWriter writer, System.ReadOnlySpan src) -> void -static MessagePack.Internal.UnsafeMemory32.WriteRaw16(ref MessagePack.MessagePackWriter writer, System.ReadOnlySpan src) -> void -static MessagePack.Internal.UnsafeMemory32.WriteRaw17(ref MessagePack.MessagePackWriter writer, System.ReadOnlySpan src) -> void -static MessagePack.Internal.UnsafeMemory32.WriteRaw18(ref MessagePack.MessagePackWriter writer, System.ReadOnlySpan src) -> void -static MessagePack.Internal.UnsafeMemory32.WriteRaw19(ref MessagePack.MessagePackWriter writer, System.ReadOnlySpan src) -> void -static MessagePack.Internal.UnsafeMemory32.WriteRaw2(ref MessagePack.MessagePackWriter writer, System.ReadOnlySpan src) -> void -static MessagePack.Internal.UnsafeMemory32.WriteRaw20(ref MessagePack.MessagePackWriter writer, System.ReadOnlySpan src) -> void -static MessagePack.Internal.UnsafeMemory32.WriteRaw21(ref MessagePack.MessagePackWriter writer, System.ReadOnlySpan src) -> void -static MessagePack.Internal.UnsafeMemory32.WriteRaw22(ref MessagePack.MessagePackWriter writer, System.ReadOnlySpan src) -> void -static MessagePack.Internal.UnsafeMemory32.WriteRaw23(ref MessagePack.MessagePackWriter writer, System.ReadOnlySpan src) -> void -static MessagePack.Internal.UnsafeMemory32.WriteRaw24(ref MessagePack.MessagePackWriter writer, System.ReadOnlySpan src) -> void -static MessagePack.Internal.UnsafeMemory32.WriteRaw25(ref MessagePack.MessagePackWriter writer, System.ReadOnlySpan src) -> void -static MessagePack.Internal.UnsafeMemory32.WriteRaw26(ref MessagePack.MessagePackWriter writer, System.ReadOnlySpan src) -> void -static MessagePack.Internal.UnsafeMemory32.WriteRaw27(ref MessagePack.MessagePackWriter writer, System.ReadOnlySpan src) -> void -static MessagePack.Internal.UnsafeMemory32.WriteRaw28(ref MessagePack.MessagePackWriter writer, System.ReadOnlySpan src) -> void -static MessagePack.Internal.UnsafeMemory32.WriteRaw29(ref MessagePack.MessagePackWriter writer, System.ReadOnlySpan src) -> void -static MessagePack.Internal.UnsafeMemory32.WriteRaw3(ref MessagePack.MessagePackWriter writer, System.ReadOnlySpan src) -> void -static MessagePack.Internal.UnsafeMemory32.WriteRaw30(ref MessagePack.MessagePackWriter writer, System.ReadOnlySpan src) -> void -static MessagePack.Internal.UnsafeMemory32.WriteRaw31(ref MessagePack.MessagePackWriter writer, System.ReadOnlySpan src) -> void -static MessagePack.Internal.UnsafeMemory32.WriteRaw4(ref MessagePack.MessagePackWriter writer, System.ReadOnlySpan src) -> void -static MessagePack.Internal.UnsafeMemory32.WriteRaw5(ref MessagePack.MessagePackWriter writer, System.ReadOnlySpan src) -> void -static MessagePack.Internal.UnsafeMemory32.WriteRaw6(ref MessagePack.MessagePackWriter writer, System.ReadOnlySpan src) -> void -static MessagePack.Internal.UnsafeMemory32.WriteRaw7(ref MessagePack.MessagePackWriter writer, System.ReadOnlySpan src) -> void -static MessagePack.Internal.UnsafeMemory32.WriteRaw8(ref MessagePack.MessagePackWriter writer, System.ReadOnlySpan src) -> void -static MessagePack.Internal.UnsafeMemory32.WriteRaw9(ref MessagePack.MessagePackWriter writer, System.ReadOnlySpan src) -> void -static MessagePack.Internal.UnsafeMemory64.WriteRaw1(ref MessagePack.MessagePackWriter writer, System.ReadOnlySpan src) -> void -static MessagePack.Internal.UnsafeMemory64.WriteRaw10(ref MessagePack.MessagePackWriter writer, System.ReadOnlySpan src) -> void -static MessagePack.Internal.UnsafeMemory64.WriteRaw11(ref MessagePack.MessagePackWriter writer, System.ReadOnlySpan src) -> void -static MessagePack.Internal.UnsafeMemory64.WriteRaw12(ref MessagePack.MessagePackWriter writer, System.ReadOnlySpan src) -> void -static MessagePack.Internal.UnsafeMemory64.WriteRaw13(ref MessagePack.MessagePackWriter writer, System.ReadOnlySpan src) -> void -static MessagePack.Internal.UnsafeMemory64.WriteRaw14(ref MessagePack.MessagePackWriter writer, System.ReadOnlySpan src) -> void -static MessagePack.Internal.UnsafeMemory64.WriteRaw15(ref MessagePack.MessagePackWriter writer, System.ReadOnlySpan src) -> void -static MessagePack.Internal.UnsafeMemory64.WriteRaw16(ref MessagePack.MessagePackWriter writer, System.ReadOnlySpan src) -> void -static MessagePack.Internal.UnsafeMemory64.WriteRaw17(ref MessagePack.MessagePackWriter writer, System.ReadOnlySpan src) -> void -static MessagePack.Internal.UnsafeMemory64.WriteRaw18(ref MessagePack.MessagePackWriter writer, System.ReadOnlySpan src) -> void -static MessagePack.Internal.UnsafeMemory64.WriteRaw19(ref MessagePack.MessagePackWriter writer, System.ReadOnlySpan src) -> void -static MessagePack.Internal.UnsafeMemory64.WriteRaw2(ref MessagePack.MessagePackWriter writer, System.ReadOnlySpan src) -> void -static MessagePack.Internal.UnsafeMemory64.WriteRaw20(ref MessagePack.MessagePackWriter writer, System.ReadOnlySpan src) -> void -static MessagePack.Internal.UnsafeMemory64.WriteRaw21(ref MessagePack.MessagePackWriter writer, System.ReadOnlySpan src) -> void -static MessagePack.Internal.UnsafeMemory64.WriteRaw22(ref MessagePack.MessagePackWriter writer, System.ReadOnlySpan src) -> void -static MessagePack.Internal.UnsafeMemory64.WriteRaw23(ref MessagePack.MessagePackWriter writer, System.ReadOnlySpan src) -> void -static MessagePack.Internal.UnsafeMemory64.WriteRaw24(ref MessagePack.MessagePackWriter writer, System.ReadOnlySpan src) -> void -static MessagePack.Internal.UnsafeMemory64.WriteRaw25(ref MessagePack.MessagePackWriter writer, System.ReadOnlySpan src) -> void -static MessagePack.Internal.UnsafeMemory64.WriteRaw26(ref MessagePack.MessagePackWriter writer, System.ReadOnlySpan src) -> void -static MessagePack.Internal.UnsafeMemory64.WriteRaw27(ref MessagePack.MessagePackWriter writer, System.ReadOnlySpan src) -> void -static MessagePack.Internal.UnsafeMemory64.WriteRaw28(ref MessagePack.MessagePackWriter writer, System.ReadOnlySpan src) -> void -static MessagePack.Internal.UnsafeMemory64.WriteRaw29(ref MessagePack.MessagePackWriter writer, System.ReadOnlySpan src) -> void -static MessagePack.Internal.UnsafeMemory64.WriteRaw3(ref MessagePack.MessagePackWriter writer, System.ReadOnlySpan src) -> void -static MessagePack.Internal.UnsafeMemory64.WriteRaw30(ref MessagePack.MessagePackWriter writer, System.ReadOnlySpan src) -> void -static MessagePack.Internal.UnsafeMemory64.WriteRaw31(ref MessagePack.MessagePackWriter writer, System.ReadOnlySpan src) -> void -static MessagePack.Internal.UnsafeMemory64.WriteRaw4(ref MessagePack.MessagePackWriter writer, System.ReadOnlySpan src) -> void -static MessagePack.Internal.UnsafeMemory64.WriteRaw5(ref MessagePack.MessagePackWriter writer, System.ReadOnlySpan src) -> void -static MessagePack.Internal.UnsafeMemory64.WriteRaw6(ref MessagePack.MessagePackWriter writer, System.ReadOnlySpan src) -> void -static MessagePack.Internal.UnsafeMemory64.WriteRaw7(ref MessagePack.MessagePackWriter writer, System.ReadOnlySpan src) -> void -static MessagePack.Internal.UnsafeMemory64.WriteRaw8(ref MessagePack.MessagePackWriter writer, System.ReadOnlySpan src) -> void -static MessagePack.Internal.UnsafeMemory64.WriteRaw9(ref MessagePack.MessagePackWriter writer, System.ReadOnlySpan src) -> void -static MessagePack.MessagePackCode.ToFormatName(byte code) -> string! -static MessagePack.MessagePackCode.ToMessagePackType(byte code) -> MessagePack.MessagePackType -static MessagePack.MessagePackSerializer.ConvertFromJson(System.IO.TextReader! reader, ref MessagePack.MessagePackWriter writer, MessagePack.MessagePackSerializerOptions? options = null) -> void -static MessagePack.MessagePackSerializer.ConvertFromJson(string! str, MessagePack.MessagePackSerializerOptions? options = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) -> byte[]! -static MessagePack.MessagePackSerializer.ConvertFromJson(string! str, ref MessagePack.MessagePackWriter writer, MessagePack.MessagePackSerializerOptions? options = null) -> void -static MessagePack.MessagePackSerializer.ConvertToJson(System.ReadOnlyMemory bytes, MessagePack.MessagePackSerializerOptions? options = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) -> string! -static MessagePack.MessagePackSerializer.ConvertToJson(in System.Buffers.ReadOnlySequence bytes, MessagePack.MessagePackSerializerOptions? options = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) -> string! -static MessagePack.MessagePackSerializer.ConvertToJson(ref MessagePack.MessagePackReader reader, System.IO.TextWriter! jsonWriter, MessagePack.MessagePackSerializerOptions? options = null) -> void -static MessagePack.MessagePackSerializer.DefaultOptions.get -> MessagePack.MessagePackSerializerOptions! -static MessagePack.MessagePackSerializer.DefaultOptions.set -> void -static MessagePack.MessagePackSerializer.Deserialize(System.Type! type, System.Buffers.ReadOnlySequence bytes, MessagePack.MessagePackSerializerOptions? options = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) -> object? -static MessagePack.MessagePackSerializer.Deserialize(System.Type! type, System.IO.Stream! stream, MessagePack.MessagePackSerializerOptions? options = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) -> object? -static MessagePack.MessagePackSerializer.Deserialize(System.Type! type, System.ReadOnlyMemory bytes, MessagePack.MessagePackSerializerOptions? options = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) -> object? -static MessagePack.MessagePackSerializer.Deserialize(System.Type! type, ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions? options = null) -> object? -static MessagePack.MessagePackSerializer.Deserialize(System.IO.Stream! stream, MessagePack.MessagePackSerializerOptions? options = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) -> T -static MessagePack.MessagePackSerializer.Deserialize(System.ReadOnlyMemory buffer, MessagePack.MessagePackSerializerOptions? options = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) -> T -static MessagePack.MessagePackSerializer.Deserialize(System.ReadOnlyMemory buffer, MessagePack.MessagePackSerializerOptions? options, out int bytesRead, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) -> T -static MessagePack.MessagePackSerializer.Deserialize(System.ReadOnlyMemory buffer, out int bytesRead, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) -> T -static MessagePack.MessagePackSerializer.Deserialize(in System.Buffers.ReadOnlySequence byteSequence, MessagePack.MessagePackSerializerOptions? options = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) -> T -static MessagePack.MessagePackSerializer.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions? options = null) -> T -static MessagePack.MessagePackSerializer.DeserializeAsync(System.Type! type, System.IO.Stream! stream, MessagePack.MessagePackSerializerOptions? options = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) -> System.Threading.Tasks.ValueTask -static MessagePack.MessagePackSerializer.DeserializeAsync(System.IO.Stream! stream, MessagePack.MessagePackSerializerOptions? options = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) -> System.Threading.Tasks.ValueTask -static MessagePack.MessagePackSerializer.Serialize(System.Type! type, System.Buffers.IBufferWriter! writer, object? obj, MessagePack.MessagePackSerializerOptions? options = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) -> void -static MessagePack.MessagePackSerializer.Serialize(System.Type! type, System.IO.Stream! stream, object? obj, MessagePack.MessagePackSerializerOptions? options = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) -> void -static MessagePack.MessagePackSerializer.Serialize(System.Type! type, object? obj, MessagePack.MessagePackSerializerOptions? options = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) -> byte[]! -static MessagePack.MessagePackSerializer.Serialize(System.Type! type, ref MessagePack.MessagePackWriter writer, object? obj, MessagePack.MessagePackSerializerOptions? options = null) -> void -static MessagePack.MessagePackSerializer.Serialize(System.Buffers.IBufferWriter! writer, T value, MessagePack.MessagePackSerializerOptions? options = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) -> void -static MessagePack.MessagePackSerializer.Serialize(System.IO.Stream! stream, T value, MessagePack.MessagePackSerializerOptions? options = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) -> void -static MessagePack.MessagePackSerializer.Serialize(T value, MessagePack.MessagePackSerializerOptions? options = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) -> byte[]! -static MessagePack.MessagePackSerializer.Serialize(ref MessagePack.MessagePackWriter writer, T value, MessagePack.MessagePackSerializerOptions? options = null) -> void -static MessagePack.MessagePackSerializer.SerializeAsync(System.Type! type, System.IO.Stream! stream, object? obj, MessagePack.MessagePackSerializerOptions? options = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) -> System.Threading.Tasks.Task! -static MessagePack.MessagePackSerializer.SerializeAsync(System.IO.Stream! stream, T value, MessagePack.MessagePackSerializerOptions? options = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) -> System.Threading.Tasks.Task! -static MessagePack.MessagePackSerializer.SerializeToJson(System.IO.TextWriter! textWriter, T obj, MessagePack.MessagePackSerializerOptions? options = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) -> void -static MessagePack.MessagePackSerializer.SerializeToJson(T obj, MessagePack.MessagePackSerializerOptions? options = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) -> string! -static MessagePack.MessagePackSerializer.Typeless.DefaultOptions.get -> MessagePack.MessagePackSerializerOptions! -static MessagePack.MessagePackSerializer.Typeless.DefaultOptions.set -> void -static MessagePack.MessagePackSerializer.Typeless.Deserialize(System.IO.Stream! stream, MessagePack.MessagePackSerializerOptions? options = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) -> object? -static MessagePack.MessagePackSerializer.Typeless.Deserialize(System.Memory bytes, MessagePack.MessagePackSerializerOptions? options = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) -> object? -static MessagePack.MessagePackSerializer.Typeless.Deserialize(in System.Buffers.ReadOnlySequence byteSequence, MessagePack.MessagePackSerializerOptions? options = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) -> object? -static MessagePack.MessagePackSerializer.Typeless.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions? options = null) -> object? -static MessagePack.MessagePackSerializer.Typeless.DeserializeAsync(System.IO.Stream! stream, MessagePack.MessagePackSerializerOptions? options = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) -> System.Threading.Tasks.ValueTask -static MessagePack.MessagePackSerializer.Typeless.Serialize(System.Buffers.IBufferWriter! writer, object? obj, MessagePack.MessagePackSerializerOptions? options = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) -> void -static MessagePack.MessagePackSerializer.Typeless.Serialize(System.IO.Stream! stream, object? obj, MessagePack.MessagePackSerializerOptions? options = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) -> void -static MessagePack.MessagePackSerializer.Typeless.Serialize(object? obj, MessagePack.MessagePackSerializerOptions? options = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) -> byte[]! -static MessagePack.MessagePackSerializer.Typeless.Serialize(ref MessagePack.MessagePackWriter writer, object? obj, MessagePack.MessagePackSerializerOptions? options = null) -> void -static MessagePack.MessagePackSerializer.Typeless.SerializeAsync(System.IO.Stream! stream, object? obj, MessagePack.MessagePackSerializerOptions? options = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) -> System.Threading.Tasks.Task! -static MessagePack.MessagePackSerializerOptions.Standard.get -> MessagePack.MessagePackSerializerOptions! -static MessagePack.Resolvers.CompositeResolver.Create(System.Collections.Generic.IReadOnlyList! formatters, System.Collections.Generic.IReadOnlyList! resolvers) -> MessagePack.IFormatterResolver! -static MessagePack.Resolvers.CompositeResolver.Create(params MessagePack.Formatters.IMessagePackFormatter![]! formatters) -> MessagePack.IFormatterResolver! -static MessagePack.Resolvers.CompositeResolver.Create(params MessagePack.IFormatterResolver![]! resolvers) -> MessagePack.IFormatterResolver! -static readonly MessagePack.Formatters.BigIntegerFormatter.Instance -> MessagePack.Formatters.IMessagePackFormatter! -static readonly MessagePack.Formatters.BitArrayFormatter.Instance -> MessagePack.Formatters.IMessagePackFormatter! -static readonly MessagePack.Formatters.BooleanArrayFormatter.Instance -> MessagePack.Formatters.BooleanArrayFormatter! -static readonly MessagePack.Formatters.BooleanFormatter.Instance -> MessagePack.Formatters.BooleanFormatter! -static readonly MessagePack.Formatters.ByteArrayFormatter.Instance -> MessagePack.Formatters.ByteArrayFormatter! -static readonly MessagePack.Formatters.ByteArraySegmentFormatter.Instance -> MessagePack.Formatters.ByteArraySegmentFormatter! -static readonly MessagePack.Formatters.ByteFormatter.Instance -> MessagePack.Formatters.ByteFormatter! -static readonly MessagePack.Formatters.CharArrayFormatter.Instance -> MessagePack.Formatters.CharArrayFormatter! -static readonly MessagePack.Formatters.CharFormatter.Instance -> MessagePack.Formatters.CharFormatter! -static readonly MessagePack.Formatters.ComplexFormatter.Instance -> MessagePack.Formatters.IMessagePackFormatter! -static readonly MessagePack.Formatters.DateTimeArrayFormatter.Instance -> MessagePack.Formatters.DateTimeArrayFormatter! -static readonly MessagePack.Formatters.DateTimeFormatter.Instance -> MessagePack.Formatters.DateTimeFormatter! -static readonly MessagePack.Formatters.DateTimeOffsetFormatter.Instance -> MessagePack.Formatters.IMessagePackFormatter! -static readonly MessagePack.Formatters.DecimalFormatter.Instance -> MessagePack.Formatters.DecimalFormatter! -static readonly MessagePack.Formatters.DoubleArrayFormatter.Instance -> MessagePack.Formatters.DoubleArrayFormatter! -static readonly MessagePack.Formatters.DoubleFormatter.Instance -> MessagePack.Formatters.DoubleFormatter! -static readonly MessagePack.Formatters.DynamicObjectTypeFallbackFormatter.Instance -> MessagePack.Formatters.IMessagePackFormatter! -static readonly MessagePack.Formatters.ForceByteBlockFormatter.Instance -> MessagePack.Formatters.ForceByteBlockFormatter! -static readonly MessagePack.Formatters.ForceInt16BlockArrayFormatter.Instance -> MessagePack.Formatters.ForceInt16BlockArrayFormatter! -static readonly MessagePack.Formatters.ForceInt16BlockFormatter.Instance -> MessagePack.Formatters.ForceInt16BlockFormatter! -static readonly MessagePack.Formatters.ForceInt32BlockArrayFormatter.Instance -> MessagePack.Formatters.ForceInt32BlockArrayFormatter! -static readonly MessagePack.Formatters.ForceInt32BlockFormatter.Instance -> MessagePack.Formatters.ForceInt32BlockFormatter! -static readonly MessagePack.Formatters.ForceInt64BlockArrayFormatter.Instance -> MessagePack.Formatters.ForceInt64BlockArrayFormatter! -static readonly MessagePack.Formatters.ForceInt64BlockFormatter.Instance -> MessagePack.Formatters.ForceInt64BlockFormatter! -static readonly MessagePack.Formatters.ForceSByteBlockArrayFormatter.Instance -> MessagePack.Formatters.ForceSByteBlockArrayFormatter! -static readonly MessagePack.Formatters.ForceSByteBlockFormatter.Instance -> MessagePack.Formatters.ForceSByteBlockFormatter! -static readonly MessagePack.Formatters.ForceUInt16BlockArrayFormatter.Instance -> MessagePack.Formatters.ForceUInt16BlockArrayFormatter! -static readonly MessagePack.Formatters.ForceUInt16BlockFormatter.Instance -> MessagePack.Formatters.ForceUInt16BlockFormatter! -static readonly MessagePack.Formatters.ForceUInt32BlockArrayFormatter.Instance -> MessagePack.Formatters.ForceUInt32BlockArrayFormatter! -static readonly MessagePack.Formatters.ForceUInt32BlockFormatter.Instance -> MessagePack.Formatters.ForceUInt32BlockFormatter! -static readonly MessagePack.Formatters.ForceUInt64BlockArrayFormatter.Instance -> MessagePack.Formatters.ForceUInt64BlockArrayFormatter! -static readonly MessagePack.Formatters.ForceUInt64BlockFormatter.Instance -> MessagePack.Formatters.ForceUInt64BlockFormatter! -static readonly MessagePack.Formatters.GuidFormatter.Instance -> MessagePack.Formatters.IMessagePackFormatter! -static readonly MessagePack.Formatters.Int16ArrayFormatter.Instance -> MessagePack.Formatters.Int16ArrayFormatter! -static readonly MessagePack.Formatters.Int16Formatter.Instance -> MessagePack.Formatters.Int16Formatter! -static readonly MessagePack.Formatters.Int32ArrayFormatter.Instance -> MessagePack.Formatters.Int32ArrayFormatter! -static readonly MessagePack.Formatters.Int32Formatter.Instance -> MessagePack.Formatters.Int32Formatter! -static readonly MessagePack.Formatters.Int64ArrayFormatter.Instance -> MessagePack.Formatters.Int64ArrayFormatter! -static readonly MessagePack.Formatters.Int64Formatter.Instance -> MessagePack.Formatters.Int64Formatter! -static readonly MessagePack.Formatters.NativeDateTimeArrayFormatter.Instance -> MessagePack.Formatters.NativeDateTimeArrayFormatter! -static readonly MessagePack.Formatters.NativeDateTimeFormatter.Instance -> MessagePack.Formatters.NativeDateTimeFormatter! -static readonly MessagePack.Formatters.NativeDecimalFormatter.Instance -> MessagePack.Formatters.IMessagePackFormatter! -static readonly MessagePack.Formatters.NativeGuidFormatter.Instance -> MessagePack.Formatters.IMessagePackFormatter! -static readonly MessagePack.Formatters.NilFormatter.Instance -> MessagePack.Formatters.IMessagePackFormatter! -static readonly MessagePack.Formatters.NonGenericInterfaceDictionaryFormatter.Instance -> MessagePack.Formatters.IMessagePackFormatter! -static readonly MessagePack.Formatters.NonGenericInterfaceListFormatter.Instance -> MessagePack.Formatters.IMessagePackFormatter! -static readonly MessagePack.Formatters.NullableBooleanFormatter.Instance -> MessagePack.Formatters.NullableBooleanFormatter! -static readonly MessagePack.Formatters.NullableByteFormatter.Instance -> MessagePack.Formatters.NullableByteFormatter! -static readonly MessagePack.Formatters.NullableCharFormatter.Instance -> MessagePack.Formatters.NullableCharFormatter! -static readonly MessagePack.Formatters.NullableDateTimeFormatter.Instance -> MessagePack.Formatters.NullableDateTimeFormatter! -static readonly MessagePack.Formatters.NullableDoubleFormatter.Instance -> MessagePack.Formatters.NullableDoubleFormatter! -static readonly MessagePack.Formatters.NullableForceByteBlockFormatter.Instance -> MessagePack.Formatters.NullableForceByteBlockFormatter! -static readonly MessagePack.Formatters.NullableForceInt16BlockFormatter.Instance -> MessagePack.Formatters.NullableForceInt16BlockFormatter! -static readonly MessagePack.Formatters.NullableForceInt32BlockFormatter.Instance -> MessagePack.Formatters.NullableForceInt32BlockFormatter! -static readonly MessagePack.Formatters.NullableForceInt64BlockFormatter.Instance -> MessagePack.Formatters.NullableForceInt64BlockFormatter! -static readonly MessagePack.Formatters.NullableForceSByteBlockFormatter.Instance -> MessagePack.Formatters.NullableForceSByteBlockFormatter! -static readonly MessagePack.Formatters.NullableForceUInt16BlockFormatter.Instance -> MessagePack.Formatters.NullableForceUInt16BlockFormatter! -static readonly MessagePack.Formatters.NullableForceUInt32BlockFormatter.Instance -> MessagePack.Formatters.NullableForceUInt32BlockFormatter! -static readonly MessagePack.Formatters.NullableForceUInt64BlockFormatter.Instance -> MessagePack.Formatters.NullableForceUInt64BlockFormatter! -static readonly MessagePack.Formatters.NullableInt16Formatter.Instance -> MessagePack.Formatters.NullableInt16Formatter! -static readonly MessagePack.Formatters.NullableInt32Formatter.Instance -> MessagePack.Formatters.NullableInt32Formatter! -static readonly MessagePack.Formatters.NullableInt64Formatter.Instance -> MessagePack.Formatters.NullableInt64Formatter! -static readonly MessagePack.Formatters.NullableNilFormatter.Instance -> MessagePack.Formatters.IMessagePackFormatter! -static readonly MessagePack.Formatters.NullableSByteFormatter.Instance -> MessagePack.Formatters.NullableSByteFormatter! -static readonly MessagePack.Formatters.NullableSingleFormatter.Instance -> MessagePack.Formatters.NullableSingleFormatter! -static readonly MessagePack.Formatters.NullableStringArrayFormatter.Instance -> MessagePack.Formatters.NullableStringArrayFormatter! -static readonly MessagePack.Formatters.NullableStringFormatter.Instance -> MessagePack.Formatters.NullableStringFormatter! -static readonly MessagePack.Formatters.NullableUInt16Formatter.Instance -> MessagePack.Formatters.NullableUInt16Formatter! -static readonly MessagePack.Formatters.NullableUInt32Formatter.Instance -> MessagePack.Formatters.NullableUInt32Formatter! -static readonly MessagePack.Formatters.NullableUInt64Formatter.Instance -> MessagePack.Formatters.NullableUInt64Formatter! -static readonly MessagePack.Formatters.PrimitiveObjectFormatter.Instance -> MessagePack.Formatters.IMessagePackFormatter! -static readonly MessagePack.Formatters.SByteArrayFormatter.Instance -> MessagePack.Formatters.SByteArrayFormatter! -static readonly MessagePack.Formatters.SByteFormatter.Instance -> MessagePack.Formatters.SByteFormatter! -static readonly MessagePack.Formatters.SingleArrayFormatter.Instance -> MessagePack.Formatters.SingleArrayFormatter! -static readonly MessagePack.Formatters.SingleFormatter.Instance -> MessagePack.Formatters.SingleFormatter! -static readonly MessagePack.Formatters.StringBuilderFormatter.Instance -> MessagePack.Formatters.IMessagePackFormatter! -static readonly MessagePack.Formatters.TimeSpanFormatter.Instance -> MessagePack.Formatters.IMessagePackFormatter! -static readonly MessagePack.Formatters.TypelessFormatter.Instance -> MessagePack.Formatters.IMessagePackFormatter! -static readonly MessagePack.Formatters.UInt16ArrayFormatter.Instance -> MessagePack.Formatters.UInt16ArrayFormatter! -static readonly MessagePack.Formatters.UInt16Formatter.Instance -> MessagePack.Formatters.UInt16Formatter! -static readonly MessagePack.Formatters.UInt32ArrayFormatter.Instance -> MessagePack.Formatters.UInt32ArrayFormatter! -static readonly MessagePack.Formatters.UInt32Formatter.Instance -> MessagePack.Formatters.UInt32Formatter! -static readonly MessagePack.Formatters.UInt64ArrayFormatter.Instance -> MessagePack.Formatters.UInt64ArrayFormatter! -static readonly MessagePack.Formatters.UInt64Formatter.Instance -> MessagePack.Formatters.UInt64Formatter! -static readonly MessagePack.Formatters.UriFormatter.Instance -> MessagePack.Formatters.IMessagePackFormatter! -static readonly MessagePack.Formatters.VersionFormatter.Instance -> MessagePack.Formatters.IMessagePackFormatter! -static readonly MessagePack.Internal.AutomataKeyGen.GetKeyMethod -> System.Reflection.MethodInfo! -static readonly MessagePack.Internal.RuntimeTypeHandleEqualityComparer.Default -> System.Collections.Generic.IEqualityComparer! -static readonly MessagePack.Internal.UnsafeMemory.Is32Bit -> bool -static readonly MessagePack.Nil.Default -> MessagePack.Nil -static readonly MessagePack.Resolvers.AttributeFormatterResolver.Instance -> MessagePack.Resolvers.AttributeFormatterResolver! -static readonly MessagePack.Resolvers.BuiltinResolver.Instance -> MessagePack.Resolvers.BuiltinResolver! -static readonly MessagePack.Resolvers.ContractlessStandardResolver.Instance -> MessagePack.Resolvers.ContractlessStandardResolver! -static readonly MessagePack.Resolvers.ContractlessStandardResolver.Options -> MessagePack.MessagePackSerializerOptions! -static readonly MessagePack.Resolvers.ContractlessStandardResolverAllowPrivate.Instance -> MessagePack.Resolvers.ContractlessStandardResolverAllowPrivate! -static readonly MessagePack.Resolvers.ContractlessStandardResolverAllowPrivate.Options -> MessagePack.MessagePackSerializerOptions! -static readonly MessagePack.Resolvers.DynamicContractlessObjectResolver.Instance -> MessagePack.Resolvers.DynamicContractlessObjectResolver! -static readonly MessagePack.Resolvers.DynamicContractlessObjectResolverAllowPrivate.Instance -> MessagePack.Resolvers.DynamicContractlessObjectResolverAllowPrivate! -static readonly MessagePack.Resolvers.DynamicEnumAsStringResolver.Instance -> MessagePack.Resolvers.DynamicEnumAsStringResolver! -static readonly MessagePack.Resolvers.DynamicEnumAsStringResolver.Options -> MessagePack.MessagePackSerializerOptions! -static readonly MessagePack.Resolvers.DynamicEnumResolver.Instance -> MessagePack.Resolvers.DynamicEnumResolver! -static readonly MessagePack.Resolvers.DynamicGenericResolver.Instance -> MessagePack.Resolvers.DynamicGenericResolver! -static readonly MessagePack.Resolvers.DynamicObjectResolver.Instance -> MessagePack.Resolvers.DynamicObjectResolver! -static readonly MessagePack.Resolvers.DynamicObjectResolver.Options -> MessagePack.MessagePackSerializerOptions! -static readonly MessagePack.Resolvers.DynamicObjectResolverAllowPrivate.Instance -> MessagePack.Resolvers.DynamicObjectResolverAllowPrivate! -static readonly MessagePack.Resolvers.DynamicUnionResolver.Instance -> MessagePack.Resolvers.DynamicUnionResolver! -static readonly MessagePack.Resolvers.DynamicUnionResolver.Options -> MessagePack.MessagePackSerializerOptions! -static readonly MessagePack.Resolvers.NativeDateTimeResolver.Instance -> MessagePack.Resolvers.NativeDateTimeResolver! -static readonly MessagePack.Resolvers.NativeDateTimeResolver.Options -> MessagePack.MessagePackSerializerOptions! -static readonly MessagePack.Resolvers.NativeDecimalResolver.Instance -> MessagePack.Resolvers.NativeDecimalResolver! -static readonly MessagePack.Resolvers.NativeGuidResolver.Instance -> MessagePack.Resolvers.NativeGuidResolver! -static readonly MessagePack.Resolvers.PrimitiveObjectResolver.Instance -> MessagePack.Resolvers.PrimitiveObjectResolver! -static readonly MessagePack.Resolvers.PrimitiveObjectResolver.Options -> MessagePack.MessagePackSerializerOptions! -static readonly MessagePack.Resolvers.StandardResolver.Instance -> MessagePack.Resolvers.StandardResolver! -static readonly MessagePack.Resolvers.StandardResolver.Options -> MessagePack.MessagePackSerializerOptions! -static readonly MessagePack.Resolvers.StandardResolverAllowPrivate.Instance -> MessagePack.Resolvers.StandardResolverAllowPrivate! -static readonly MessagePack.Resolvers.StandardResolverAllowPrivate.Options -> MessagePack.MessagePackSerializerOptions! -static readonly MessagePack.Resolvers.StaticCompositeResolver.Instance -> MessagePack.Resolvers.StaticCompositeResolver! -static readonly MessagePack.Resolvers.TypelessContractlessStandardResolver.Instance -> MessagePack.Resolvers.TypelessContractlessStandardResolver! -static readonly MessagePack.Resolvers.TypelessContractlessStandardResolver.Options -> MessagePack.MessagePackSerializerOptions! -static readonly MessagePack.Resolvers.TypelessObjectResolver.Instance -> MessagePack.IFormatterResolver! -virtual MessagePack.Formatters.CollectionFormatterBase.GetCount(TCollection sequence) -> int? -virtual MessagePack.MessagePackSerializerOptions.Clone() -> MessagePack.MessagePackSerializerOptions! -virtual MessagePack.MessagePackSerializerOptions.LoadType(string! typeName) -> System.Type? -virtual MessagePack.MessagePackSerializerOptions.ThrowIfDeserializingTypeIsDisallowed(System.Type! type) -> void -MessagePack.ExtensionHeader.Equals(MessagePack.ExtensionHeader other) -> bool -MessagePack.Formatters.InterfaceCollectionFormatter2 -MessagePack.Formatters.InterfaceCollectionFormatter2.InterfaceCollectionFormatter2() -> void -MessagePack.Formatters.InterfaceListFormatter2 -MessagePack.Formatters.InterfaceListFormatter2.InterfaceListFormatter2() -> void -MessagePack.MessagePackReader.Depth.get -> int -MessagePack.MessagePackReader.Depth.set -> void -MessagePack.MessagePackReader.ReadDateTime(MessagePack.ExtensionHeader header) -> System.DateTime -MessagePack.MessagePackReader.TryReadArrayHeader(out int count) -> bool -MessagePack.MessagePackReader.TryReadExtensionFormatHeader(out MessagePack.ExtensionHeader extensionHeader) -> bool -MessagePack.MessagePackReader.TryReadMapHeader(out int count) -> bool -MessagePack.MessagePackSecurity -MessagePack.MessagePackSecurity.DepthStep(ref MessagePack.MessagePackReader reader) -> void -MessagePack.MessagePackSecurity.GetEqualityComparer() -> System.Collections.IEqualityComparer! -MessagePack.MessagePackSecurity.GetEqualityComparer() -> System.Collections.Generic.IEqualityComparer! -MessagePack.MessagePackSecurity.HashCollisionResistant.get -> bool -MessagePack.MessagePackSecurity.MaximumObjectGraphDepth.get -> int -MessagePack.MessagePackSecurity.MessagePackSecurity(MessagePack.MessagePackSecurity! copyFrom) -> void -MessagePack.MessagePackSecurity.WithHashCollisionResistant(bool hashCollisionResistant) -> MessagePack.MessagePackSecurity! -MessagePack.MessagePackSecurity.WithMaximumObjectGraphDepth(int maximumObjectGraphDepth) -> MessagePack.MessagePackSecurity! -MessagePack.MessagePackSerializerOptions.Security.get -> MessagePack.MessagePackSecurity! -MessagePack.MessagePackSerializerOptions.WithSecurity(MessagePack.MessagePackSecurity! security) -> MessagePack.MessagePackSerializerOptions! -MessagePack.MessagePackStreamReader.DiscardBufferedData() -> void -MessagePack.MessagePackStreamReader.MessagePackStreamReader(System.IO.Stream! stream, bool leaveOpen) -> void -MessagePack.MessagePackStreamReader.ReadArrayAsync(System.Threading.CancellationToken cancellationToken) -> System.Collections.Generic.IAsyncEnumerable>! -MessagePack.MessagePackWriter.WriteBinHeader(int length) -> void -MessagePack.MessagePackWriter.WriteStringHeader(int byteCount) -> void -static readonly MessagePack.MessagePackSecurity.TrustedData -> MessagePack.MessagePackSecurity! -static readonly MessagePack.MessagePackSecurity.UntrustedData -> MessagePack.MessagePackSecurity! -virtual MessagePack.MessagePackSecurity.Clone() -> MessagePack.MessagePackSecurity! -virtual MessagePack.MessagePackSecurity.GetHashCollisionResistantEqualityComparer() -> System.Collections.IEqualityComparer! -virtual MessagePack.MessagePackSecurity.GetHashCollisionResistantEqualityComparer() -> System.Collections.Generic.IEqualityComparer! -MessagePack.Formatters.ByteMemoryFormatter -MessagePack.Formatters.ByteMemoryFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> System.Memory -MessagePack.Formatters.ByteMemoryFormatter.Serialize(ref MessagePack.MessagePackWriter writer, System.Memory value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.ByteReadOnlyMemoryFormatter -MessagePack.Formatters.ByteReadOnlyMemoryFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> System.ReadOnlyMemory -MessagePack.Formatters.ByteReadOnlyMemoryFormatter.Serialize(ref MessagePack.MessagePackWriter writer, System.ReadOnlyMemory value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.ByteReadOnlySequenceFormatter -MessagePack.Formatters.ByteReadOnlySequenceFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> System.Buffers.ReadOnlySequence -MessagePack.Formatters.ByteReadOnlySequenceFormatter.Serialize(ref MessagePack.MessagePackWriter writer, System.Buffers.ReadOnlySequence value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.ExpandoObjectFormatter -MessagePack.Formatters.ExpandoObjectFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> System.Dynamic.ExpandoObject? -MessagePack.Formatters.ExpandoObjectFormatter.Serialize(ref MessagePack.MessagePackWriter writer, System.Dynamic.ExpandoObject? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.ForceTypelessFormatter -MessagePack.Formatters.ForceTypelessFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> T? -MessagePack.Formatters.ForceTypelessFormatter.ForceTypelessFormatter() -> void -MessagePack.Formatters.ForceTypelessFormatter.Serialize(ref MessagePack.MessagePackWriter writer, T? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.MemoryFormatter -MessagePack.Formatters.MemoryFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> System.Memory -MessagePack.Formatters.MemoryFormatter.MemoryFormatter() -> void -MessagePack.Formatters.MemoryFormatter.Serialize(ref MessagePack.MessagePackWriter writer, System.Memory value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.NonGenericInterfaceCollectionFormatter -MessagePack.Formatters.NonGenericInterfaceCollectionFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> System.Collections.ICollection? -MessagePack.Formatters.NonGenericInterfaceCollectionFormatter.Serialize(ref MessagePack.MessagePackWriter writer, System.Collections.ICollection? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.NonGenericInterfaceEnumerableFormatter -MessagePack.Formatters.NonGenericInterfaceEnumerableFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> System.Collections.IEnumerable? -MessagePack.Formatters.NonGenericInterfaceEnumerableFormatter.Serialize(ref MessagePack.MessagePackWriter writer, System.Collections.IEnumerable? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.PrimitiveObjectFormatter.PrimitiveObjectFormatter() -> void -MessagePack.Formatters.ReadOnlyMemoryFormatter -MessagePack.Formatters.ReadOnlyMemoryFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> System.ReadOnlyMemory -MessagePack.Formatters.ReadOnlyMemoryFormatter.ReadOnlyMemoryFormatter() -> void -MessagePack.Formatters.ReadOnlyMemoryFormatter.Serialize(ref MessagePack.MessagePackWriter writer, System.ReadOnlyMemory value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.ReadOnlySequenceFormatter -MessagePack.Formatters.ReadOnlySequenceFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> System.Buffers.ReadOnlySequence -MessagePack.Formatters.ReadOnlySequenceFormatter.ReadOnlySequenceFormatter() -> void -MessagePack.Formatters.ReadOnlySequenceFormatter.Serialize(ref MessagePack.MessagePackWriter writer, System.Buffers.ReadOnlySequence value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.TypeFormatter -MessagePack.Formatters.TypeFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> T? -MessagePack.Formatters.TypeFormatter.Serialize(ref MessagePack.MessagePackWriter writer, T? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.TypelessFormatter.TypelessFormatter() -> void -MessagePack.ImmutableCollection.ImmutableArrayFormatter -~MessagePack.ImmutableCollection.ImmutableArrayFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions options) -> System.Collections.Immutable.ImmutableArray -MessagePack.ImmutableCollection.ImmutableArrayFormatter.ImmutableArrayFormatter() -> void -~MessagePack.ImmutableCollection.ImmutableArrayFormatter.Serialize(ref MessagePack.MessagePackWriter writer, System.Collections.Immutable.ImmutableArray value, MessagePack.MessagePackSerializerOptions options) -> void -MessagePack.ImmutableCollection.ImmutableCollectionResolver -MessagePack.ImmutableCollection.ImmutableCollectionResolver.GetFormatter() -> MessagePack.Formatters.IMessagePackFormatter? -MessagePack.ImmutableCollection.ImmutableDictionaryFormatter -MessagePack.ImmutableCollection.ImmutableDictionaryFormatter.ImmutableDictionaryFormatter() -> void -MessagePack.ImmutableCollection.ImmutableHashSetFormatter -MessagePack.ImmutableCollection.ImmutableHashSetFormatter.ImmutableHashSetFormatter() -> void -MessagePack.ImmutableCollection.ImmutableListFormatter -MessagePack.ImmutableCollection.ImmutableListFormatter.ImmutableListFormatter() -> void -MessagePack.ImmutableCollection.ImmutableQueueBuilder -MessagePack.ImmutableCollection.ImmutableQueueBuilder.Add(T value) -> void -MessagePack.ImmutableCollection.ImmutableQueueBuilder.ImmutableQueueBuilder() -> void -~MessagePack.ImmutableCollection.ImmutableQueueBuilder.Q.get -> System.Collections.Immutable.ImmutableQueue -~MessagePack.ImmutableCollection.ImmutableQueueBuilder.Q.set -> void -MessagePack.ImmutableCollection.ImmutableQueueFormatter -MessagePack.ImmutableCollection.ImmutableQueueFormatter.ImmutableQueueFormatter() -> void -MessagePack.ImmutableCollection.ImmutableSortedDictionaryFormatter -MessagePack.ImmutableCollection.ImmutableSortedDictionaryFormatter.ImmutableSortedDictionaryFormatter() -> void -MessagePack.ImmutableCollection.ImmutableSortedSetFormatter -MessagePack.ImmutableCollection.ImmutableSortedSetFormatter.ImmutableSortedSetFormatter() -> void -MessagePack.ImmutableCollection.ImmutableStackFormatter -MessagePack.ImmutableCollection.ImmutableStackFormatter.ImmutableStackFormatter() -> void -MessagePack.ImmutableCollection.InterfaceImmutableDictionaryFormatter -MessagePack.ImmutableCollection.InterfaceImmutableDictionaryFormatter.InterfaceImmutableDictionaryFormatter() -> void -MessagePack.ImmutableCollection.InterfaceImmutableListFormatter -MessagePack.ImmutableCollection.InterfaceImmutableListFormatter.InterfaceImmutableListFormatter() -> void -MessagePack.ImmutableCollection.InterfaceImmutableQueueFormatter -MessagePack.ImmutableCollection.InterfaceImmutableQueueFormatter.InterfaceImmutableQueueFormatter() -> void -MessagePack.ImmutableCollection.InterfaceImmutableSetFormatter -MessagePack.ImmutableCollection.InterfaceImmutableSetFormatter.InterfaceImmutableSetFormatter() -> void -MessagePack.ImmutableCollection.InterfaceImmutableStackFormatter -MessagePack.ImmutableCollection.InterfaceImmutableStackFormatter.InterfaceImmutableStackFormatter() -> void -MessagePack.Resolvers.ExpandoObjectResolver -~override MessagePack.ImmutableCollection.ImmutableDictionaryFormatter.Add(System.Collections.Immutable.ImmutableDictionary.Builder collection, int index, TKey key, TValue value, MessagePack.MessagePackSerializerOptions options) -> void -~override MessagePack.ImmutableCollection.ImmutableDictionaryFormatter.Complete(System.Collections.Immutable.ImmutableDictionary.Builder intermediateCollection) -> System.Collections.Immutable.ImmutableDictionary -~override MessagePack.ImmutableCollection.ImmutableDictionaryFormatter.Create(int count, MessagePack.MessagePackSerializerOptions options) -> System.Collections.Immutable.ImmutableDictionary.Builder -~override MessagePack.ImmutableCollection.ImmutableDictionaryFormatter.GetSourceEnumerator(System.Collections.Immutable.ImmutableDictionary source) -> System.Collections.Immutable.ImmutableDictionary.Enumerator -~override MessagePack.ImmutableCollection.ImmutableHashSetFormatter.Add(System.Collections.Immutable.ImmutableHashSet.Builder collection, int index, T value, MessagePack.MessagePackSerializerOptions options) -> void -~override MessagePack.ImmutableCollection.ImmutableHashSetFormatter.Complete(System.Collections.Immutable.ImmutableHashSet.Builder intermediateCollection) -> System.Collections.Immutable.ImmutableHashSet -~override MessagePack.ImmutableCollection.ImmutableHashSetFormatter.Create(int count, MessagePack.MessagePackSerializerOptions options) -> System.Collections.Immutable.ImmutableHashSet.Builder -~override MessagePack.ImmutableCollection.ImmutableHashSetFormatter.GetSourceEnumerator(System.Collections.Immutable.ImmutableHashSet source) -> System.Collections.Immutable.ImmutableHashSet.Enumerator -~override MessagePack.ImmutableCollection.ImmutableListFormatter.Add(System.Collections.Immutable.ImmutableList.Builder collection, int index, T value, MessagePack.MessagePackSerializerOptions options) -> void -~override MessagePack.ImmutableCollection.ImmutableListFormatter.Complete(System.Collections.Immutable.ImmutableList.Builder intermediateCollection) -> System.Collections.Immutable.ImmutableList -~override MessagePack.ImmutableCollection.ImmutableListFormatter.Create(int count, MessagePack.MessagePackSerializerOptions options) -> System.Collections.Immutable.ImmutableList.Builder -~override MessagePack.ImmutableCollection.ImmutableListFormatter.GetSourceEnumerator(System.Collections.Immutable.ImmutableList source) -> System.Collections.Immutable.ImmutableList.Enumerator -~override MessagePack.ImmutableCollection.ImmutableQueueFormatter.Add(MessagePack.ImmutableCollection.ImmutableQueueBuilder collection, int index, T value, MessagePack.MessagePackSerializerOptions options) -> void -~override MessagePack.ImmutableCollection.ImmutableQueueFormatter.Complete(MessagePack.ImmutableCollection.ImmutableQueueBuilder intermediateCollection) -> System.Collections.Immutable.ImmutableQueue -~override MessagePack.ImmutableCollection.ImmutableQueueFormatter.Create(int count, MessagePack.MessagePackSerializerOptions options) -> MessagePack.ImmutableCollection.ImmutableQueueBuilder -~override MessagePack.ImmutableCollection.ImmutableSortedDictionaryFormatter.Add(System.Collections.Immutable.ImmutableSortedDictionary.Builder collection, int index, TKey key, TValue value, MessagePack.MessagePackSerializerOptions options) -> void -~override MessagePack.ImmutableCollection.ImmutableSortedDictionaryFormatter.Complete(System.Collections.Immutable.ImmutableSortedDictionary.Builder intermediateCollection) -> System.Collections.Immutable.ImmutableSortedDictionary -~override MessagePack.ImmutableCollection.ImmutableSortedDictionaryFormatter.Create(int count, MessagePack.MessagePackSerializerOptions options) -> System.Collections.Immutable.ImmutableSortedDictionary.Builder -~override MessagePack.ImmutableCollection.ImmutableSortedDictionaryFormatter.GetSourceEnumerator(System.Collections.Immutable.ImmutableSortedDictionary source) -> System.Collections.Immutable.ImmutableSortedDictionary.Enumerator -~override MessagePack.ImmutableCollection.ImmutableSortedSetFormatter.Add(System.Collections.Immutable.ImmutableSortedSet.Builder collection, int index, T value, MessagePack.MessagePackSerializerOptions options) -> void -~override MessagePack.ImmutableCollection.ImmutableSortedSetFormatter.Complete(System.Collections.Immutable.ImmutableSortedSet.Builder intermediateCollection) -> System.Collections.Immutable.ImmutableSortedSet -~override MessagePack.ImmutableCollection.ImmutableSortedSetFormatter.Create(int count, MessagePack.MessagePackSerializerOptions options) -> System.Collections.Immutable.ImmutableSortedSet.Builder -~override MessagePack.ImmutableCollection.ImmutableSortedSetFormatter.GetSourceEnumerator(System.Collections.Immutable.ImmutableSortedSet source) -> System.Collections.Immutable.ImmutableSortedSet.Enumerator -~override MessagePack.ImmutableCollection.ImmutableStackFormatter.Add(T[] collection, int index, T value, MessagePack.MessagePackSerializerOptions options) -> void -~override MessagePack.ImmutableCollection.ImmutableStackFormatter.Complete(T[] intermediateCollection) -> System.Collections.Immutable.ImmutableStack -~override MessagePack.ImmutableCollection.ImmutableStackFormatter.Create(int count, MessagePack.MessagePackSerializerOptions options) -> T[] -~override MessagePack.ImmutableCollection.InterfaceImmutableDictionaryFormatter.Add(System.Collections.Immutable.ImmutableDictionary.Builder collection, int index, TKey key, TValue value, MessagePack.MessagePackSerializerOptions options) -> void -~override MessagePack.ImmutableCollection.InterfaceImmutableDictionaryFormatter.Complete(System.Collections.Immutable.ImmutableDictionary.Builder intermediateCollection) -> System.Collections.Immutable.IImmutableDictionary -~override MessagePack.ImmutableCollection.InterfaceImmutableDictionaryFormatter.Create(int count, MessagePack.MessagePackSerializerOptions options) -> System.Collections.Immutable.ImmutableDictionary.Builder -~override MessagePack.ImmutableCollection.InterfaceImmutableListFormatter.Add(System.Collections.Immutable.ImmutableList.Builder collection, int index, T value, MessagePack.MessagePackSerializerOptions options) -> void -~override MessagePack.ImmutableCollection.InterfaceImmutableListFormatter.Complete(System.Collections.Immutable.ImmutableList.Builder intermediateCollection) -> System.Collections.Immutable.IImmutableList -~override MessagePack.ImmutableCollection.InterfaceImmutableListFormatter.Create(int count, MessagePack.MessagePackSerializerOptions options) -> System.Collections.Immutable.ImmutableList.Builder -~override MessagePack.ImmutableCollection.InterfaceImmutableQueueFormatter.Add(MessagePack.ImmutableCollection.ImmutableQueueBuilder collection, int index, T value, MessagePack.MessagePackSerializerOptions options) -> void -~override MessagePack.ImmutableCollection.InterfaceImmutableQueueFormatter.Complete(MessagePack.ImmutableCollection.ImmutableQueueBuilder intermediateCollection) -> System.Collections.Immutable.IImmutableQueue -~override MessagePack.ImmutableCollection.InterfaceImmutableQueueFormatter.Create(int count, MessagePack.MessagePackSerializerOptions options) -> MessagePack.ImmutableCollection.ImmutableQueueBuilder -~override MessagePack.ImmutableCollection.InterfaceImmutableSetFormatter.Add(System.Collections.Immutable.ImmutableHashSet.Builder collection, int index, T value, MessagePack.MessagePackSerializerOptions options) -> void -~override MessagePack.ImmutableCollection.InterfaceImmutableSetFormatter.Complete(System.Collections.Immutable.ImmutableHashSet.Builder intermediateCollection) -> System.Collections.Immutable.IImmutableSet -~override MessagePack.ImmutableCollection.InterfaceImmutableSetFormatter.Create(int count, MessagePack.MessagePackSerializerOptions options) -> System.Collections.Immutable.ImmutableHashSet.Builder -~override MessagePack.ImmutableCollection.InterfaceImmutableStackFormatter.Add(T[] collection, int index, T value, MessagePack.MessagePackSerializerOptions options) -> void -~override MessagePack.ImmutableCollection.InterfaceImmutableStackFormatter.Complete(T[] intermediateCollection) -> System.Collections.Immutable.IImmutableStack -~override MessagePack.ImmutableCollection.InterfaceImmutableStackFormatter.Create(int count, MessagePack.MessagePackSerializerOptions options) -> T[] -static readonly MessagePack.Formatters.ByteMemoryFormatter.Instance -> MessagePack.Formatters.ByteMemoryFormatter! -static readonly MessagePack.Formatters.ByteReadOnlyMemoryFormatter.Instance -> MessagePack.Formatters.ByteReadOnlyMemoryFormatter! -static readonly MessagePack.Formatters.ByteReadOnlySequenceFormatter.Instance -> MessagePack.Formatters.ByteReadOnlySequenceFormatter! -static readonly MessagePack.Formatters.ExpandoObjectFormatter.Instance -> MessagePack.Formatters.IMessagePackFormatter! -static readonly MessagePack.Formatters.NonGenericInterfaceCollectionFormatter.Instance -> MessagePack.Formatters.IMessagePackFormatter! -static readonly MessagePack.Formatters.NonGenericInterfaceEnumerableFormatter.Instance -> MessagePack.Formatters.IMessagePackFormatter! -static readonly MessagePack.Formatters.TypeFormatter.Instance -> MessagePack.Formatters.IMessagePackFormatter! -static readonly MessagePack.ImmutableCollection.ImmutableCollectionResolver.Instance -> MessagePack.ImmutableCollection.ImmutableCollectionResolver! -static readonly MessagePack.Resolvers.ExpandoObjectResolver.Instance -> MessagePack.IFormatterResolver! -static readonly MessagePack.Resolvers.ExpandoObjectResolver.Options -> MessagePack.MessagePackSerializerOptions! -virtual MessagePack.Formatters.PrimitiveObjectFormatter.DeserializeMap(ref MessagePack.MessagePackReader reader, int length, MessagePack.MessagePackSerializerOptions! options) -> object! -MessagePack.ExtensionHeader.ExtensionHeader() -> void -MessagePack.ExtensionResult.ExtensionResult() -> void -MessagePack.FormatterNotRegisteredException.FormatterNotRegisteredException(System.Runtime.Serialization.SerializationInfo! info, System.Runtime.Serialization.StreamingContext context) -> void -MessagePack.MessagePackReader.MessagePackReader() -> void -MessagePack.MessagePackSerializerOptions.SequencePool.get -> MessagePack.SequencePool! -MessagePack.MessagePackSerializerOptions.WithPool(MessagePack.SequencePool! pool) -> MessagePack.MessagePackSerializerOptions! -MessagePack.MessagePackStreamReader.MessagePackStreamReader(System.IO.Stream! stream, bool leaveOpen, MessagePack.SequencePool! sequencePool) -> void -MessagePack.MessagePackStreamReader.ReadArrayHeaderAsync(System.Threading.CancellationToken cancellationToken) -> System.Threading.Tasks.ValueTask -MessagePack.MessagePackStreamReader.ReadMapHeaderAsync(System.Threading.CancellationToken cancellationToken) -> System.Threading.Tasks.ValueTask -MessagePack.MessagePackWriter.MessagePackWriter() -> void -MessagePack.SequencePool -MessagePack.SequencePool.SequencePool() -> void -MessagePack.SequencePool.SequencePool(int maxSize) -> void -MessagePack.SequencePool.SequencePool(int maxSize, System.Buffers.ArrayPool! arrayPool) -> void -MessagePack.SequencePool.SequencePool(int maxSize, System.Buffers.MemoryPool! memoryPool) -> void -MessagePack.TinyJsonException.TinyJsonException(System.Runtime.Serialization.SerializationInfo! info, System.Runtime.Serialization.StreamingContext context) -> void -static MessagePack.Nil.operator !=(MessagePack.Nil left, MessagePack.Nil right) -> bool -static MessagePack.Nil.operator ==(MessagePack.Nil left, MessagePack.Nil right) -> bool -virtual MessagePack.MessagePackStreamReader.Dispose(bool disposing) -> void -MessagePack.Formatters.GenericEnumerableFormatter -MessagePack.Formatters.GenericEnumerableFormatter.GenericEnumerableFormatter() -> void -MessagePack.Formatters.GenericReadOnlyDictionaryFormatter -MessagePack.Formatters.GenericReadOnlyDictionaryFormatter.GenericReadOnlyDictionaryFormatter() -> void -MessagePack.Formatters.StringInterningFormatter -MessagePack.Formatters.StringInterningFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> string? -MessagePack.Formatters.StringInterningFormatter.Serialize(ref MessagePack.MessagePackWriter writer, string? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.StringInterningFormatter.StringInterningFormatter() -> void -MessagePack.MessagePackSerializerOptions.CompressionMinLength.get -> int -MessagePack.MessagePackSerializerOptions.SuggestedContiguousMemorySize.get -> int -MessagePack.MessagePackSerializerOptions.WithCompressionMinLength(int compressionMinLength) -> MessagePack.MessagePackSerializerOptions! -MessagePack.MessagePackSerializerOptions.WithSuggestedContiguousMemorySize(int suggestedContiguousMemorySize) -> MessagePack.MessagePackSerializerOptions! -static MessagePack.MessagePackWriter.GetEncodedLength(long value) -> int -static MessagePack.MessagePackWriter.GetEncodedLength(ulong value) -> int -const MessagePack.ReservedExtensionTypeCodes.Lz4Block = 99 -> sbyte -const MessagePack.ReservedExtensionTypeCodes.Lz4BlockArray = 98 -> sbyte -const MessagePack.ReservedExtensionTypeCodes.TypelessFormatter = 100 -> sbyte -const MessagePack.ReservedExtensionTypeCodes.UnityBounds = 35 -> sbyte -const MessagePack.ReservedExtensionTypeCodes.UnityColor = 34 -> sbyte -const MessagePack.ReservedExtensionTypeCodes.UnityDouble = 39 -> sbyte -const MessagePack.ReservedExtensionTypeCodes.UnityFloat = 38 -> sbyte -const MessagePack.ReservedExtensionTypeCodes.UnityInt = 37 -> sbyte -const MessagePack.ReservedExtensionTypeCodes.UnityQuaternion = 33 -> sbyte -const MessagePack.ReservedExtensionTypeCodes.UnityRect = 36 -> sbyte -const MessagePack.ReservedExtensionTypeCodes.UnityVector2 = 30 -> sbyte -const MessagePack.ReservedExtensionTypeCodes.UnityVector3 = 31 -> sbyte -const MessagePack.ReservedExtensionTypeCodes.UnityVector4 = 32 -> sbyte -MessagePack.CompositeResolverAttribute -MessagePack.CompositeResolverAttribute.CompositeResolverAttribute(params System.Type![]! formattersAndResolvers) -> void -MessagePack.CompositeResolverAttribute.IncludeLocalFormatters.get -> bool -MessagePack.CompositeResolverAttribute.IncludeLocalFormatters.set -> void -MessagePack.Formatters.EnumAsStringFormatter.EnumAsStringFormatter(bool ignoreCase) -> void -MessagePack.Formatters.Matrix3x2Formatter -MessagePack.Formatters.Matrix3x2Formatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> System.Numerics.Matrix3x2 -MessagePack.Formatters.Matrix3x2Formatter.Serialize(ref MessagePack.MessagePackWriter writer, System.Numerics.Matrix3x2 value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.Matrix4x4Formatter -MessagePack.Formatters.Matrix4x4Formatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> System.Numerics.Matrix4x4 -MessagePack.Formatters.Matrix4x4Formatter.Serialize(ref MessagePack.MessagePackWriter writer, System.Numerics.Matrix4x4 value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.QuaternionFormatter -MessagePack.Formatters.QuaternionFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> System.Numerics.Quaternion -MessagePack.Formatters.QuaternionFormatter.Serialize(ref MessagePack.MessagePackWriter writer, System.Numerics.Quaternion value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.Vector2Formatter -MessagePack.Formatters.Vector2Formatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> System.Numerics.Vector2 -MessagePack.Formatters.Vector2Formatter.Serialize(ref MessagePack.MessagePackWriter writer, System.Numerics.Vector2 value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.Vector3Formatter -MessagePack.Formatters.Vector3Formatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> System.Numerics.Vector3 -MessagePack.Formatters.Vector3Formatter.Serialize(ref MessagePack.MessagePackWriter writer, System.Numerics.Vector3 value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.Vector4Formatter -MessagePack.Formatters.Vector4Formatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> System.Numerics.Vector4 -MessagePack.Formatters.Vector4Formatter.Serialize(ref MessagePack.MessagePackWriter writer, System.Numerics.Vector4 value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.GeneratedMessagePackResolverAttribute -MessagePack.GeneratedMessagePackResolverAttribute.GeneratedMessagePackResolverAttribute() -> void -MessagePack.GeneratedMessagePackResolverAttribute.UseMapMode.get -> bool -MessagePack.GeneratedMessagePackResolverAttribute.UseMapMode.set -> void -MessagePack.Internal.GeneratedAssemblyMessagePackResolverAttribute -MessagePack.Internal.GeneratedAssemblyMessagePackResolverAttribute.GeneratedAssemblyMessagePackResolverAttribute(System.Type! resolverType, int majorVersion, int minorVersion) -> void -MessagePack.Internal.GeneratedAssemblyMessagePackResolverAttribute.MajorVersion.get -> int -MessagePack.Internal.GeneratedAssemblyMessagePackResolverAttribute.MinorVersion.get -> int -MessagePack.Internal.GeneratedAssemblyMessagePackResolverAttribute.ResolverType.get -> System.Type! -MessagePack.MessagePackPrimitives -MessagePack.MessagePackPrimitives.DecodeResult -MessagePack.MessagePackPrimitives.DecodeResult.EmptyBuffer = 2 -> MessagePack.MessagePackPrimitives.DecodeResult -MessagePack.MessagePackPrimitives.DecodeResult.InsufficientBuffer = 3 -> MessagePack.MessagePackPrimitives.DecodeResult -MessagePack.MessagePackPrimitives.DecodeResult.Success = 0 -> MessagePack.MessagePackPrimitives.DecodeResult -MessagePack.MessagePackPrimitives.DecodeResult.TokenMismatch = 1 -> MessagePack.MessagePackPrimitives.DecodeResult -MessagePack.ReservedExtensionTypeCodes -MessagePack.Resolvers.DynamicEnumAsStringIgnoreCaseResolver -MessagePack.Resolvers.DynamicEnumAsStringIgnoreCaseResolver.GetFormatter() -> MessagePack.Formatters.IMessagePackFormatter? -MessagePack.Resolvers.SourceGeneratedFormatterResolver -MessagePack.Resolvers.SourceGeneratedFormatterResolver.GetFormatter() -> MessagePack.Formatters.IMessagePackFormatter? -static MessagePack.MessagePackPrimitives.TryReadArrayHeader(System.ReadOnlySpan source, out uint count, out int tokenSize) -> MessagePack.MessagePackPrimitives.DecodeResult -static MessagePack.MessagePackPrimitives.TryReadBinHeader(System.ReadOnlySpan source, out uint length, out int tokenSize) -> MessagePack.MessagePackPrimitives.DecodeResult -static MessagePack.MessagePackPrimitives.TryReadBool(System.ReadOnlySpan source, out bool value, out int tokenSize) -> MessagePack.MessagePackPrimitives.DecodeResult -static MessagePack.MessagePackPrimitives.TryReadByte(System.ReadOnlySpan source, out byte value, out int tokenSize) -> MessagePack.MessagePackPrimitives.DecodeResult -static MessagePack.MessagePackPrimitives.TryReadChar(System.ReadOnlySpan source, out char value, out int tokenSize) -> MessagePack.MessagePackPrimitives.DecodeResult -static MessagePack.MessagePackPrimitives.TryReadDateTime(System.ReadOnlySpan source, MessagePack.ExtensionHeader header, out System.DateTime value, out int tokenSize) -> MessagePack.MessagePackPrimitives.DecodeResult -static MessagePack.MessagePackPrimitives.TryReadDateTime(System.ReadOnlySpan source, out System.DateTime value, out int tokenSize) -> MessagePack.MessagePackPrimitives.DecodeResult -static MessagePack.MessagePackPrimitives.TryReadDouble(System.ReadOnlySpan source, out double value, out int tokenSize) -> MessagePack.MessagePackPrimitives.DecodeResult -static MessagePack.MessagePackPrimitives.TryReadExtensionHeader(System.ReadOnlySpan source, out MessagePack.ExtensionHeader extensionHeader, out int tokenSize) -> MessagePack.MessagePackPrimitives.DecodeResult -static MessagePack.MessagePackPrimitives.TryReadInt16(System.ReadOnlySpan source, out short value, out int tokenSize) -> MessagePack.MessagePackPrimitives.DecodeResult -static MessagePack.MessagePackPrimitives.TryReadInt32(System.ReadOnlySpan source, out int value, out int tokenSize) -> MessagePack.MessagePackPrimitives.DecodeResult -static MessagePack.MessagePackPrimitives.TryReadInt64(System.ReadOnlySpan source, out long value, out int tokenSize) -> MessagePack.MessagePackPrimitives.DecodeResult -static MessagePack.MessagePackPrimitives.TryReadMapHeader(System.ReadOnlySpan source, out uint count, out int tokenSize) -> MessagePack.MessagePackPrimitives.DecodeResult -static MessagePack.MessagePackPrimitives.TryReadNil(System.ReadOnlySpan source, out int tokenSize) -> MessagePack.MessagePackPrimitives.DecodeResult -static MessagePack.MessagePackPrimitives.TryReadSByte(System.ReadOnlySpan source, out sbyte value, out int tokenSize) -> MessagePack.MessagePackPrimitives.DecodeResult -static MessagePack.MessagePackPrimitives.TryReadSingle(System.ReadOnlySpan source, out float value, out int tokenSize) -> MessagePack.MessagePackPrimitives.DecodeResult -static MessagePack.MessagePackPrimitives.TryReadStringHeader(System.ReadOnlySpan source, out uint length, out int tokenSize) -> MessagePack.MessagePackPrimitives.DecodeResult -static MessagePack.MessagePackPrimitives.TryReadUInt16(System.ReadOnlySpan source, out ushort value, out int tokenSize) -> MessagePack.MessagePackPrimitives.DecodeResult -static MessagePack.MessagePackPrimitives.TryReadUInt32(System.ReadOnlySpan source, out uint value, out int tokenSize) -> MessagePack.MessagePackPrimitives.DecodeResult -static MessagePack.MessagePackPrimitives.TryReadUInt64(System.ReadOnlySpan source, out ulong value, out int tokenSize) -> MessagePack.MessagePackPrimitives.DecodeResult -static MessagePack.MessagePackPrimitives.TryWrite(System.Span destination, bool value, out int bytesWritten) -> bool -static MessagePack.MessagePackPrimitives.TryWrite(System.Span destination, byte value, out int bytesWritten) -> bool -static MessagePack.MessagePackPrimitives.TryWrite(System.Span destination, char value, out int bytesWritten) -> bool -static MessagePack.MessagePackPrimitives.TryWrite(System.Span destination, double value, out int bytesWritten) -> bool -static MessagePack.MessagePackPrimitives.TryWrite(System.Span destination, float value, out int bytesWritten) -> bool -static MessagePack.MessagePackPrimitives.TryWrite(System.Span destination, int value, out int bytesWritten) -> bool -static MessagePack.MessagePackPrimitives.TryWrite(System.Span destination, long value, out int bytesWritten) -> bool -static MessagePack.MessagePackPrimitives.TryWrite(System.Span destination, sbyte value, out int bytesWritten) -> bool -static MessagePack.MessagePackPrimitives.TryWrite(System.Span destination, short value, out int bytesWritten) -> bool -static MessagePack.MessagePackPrimitives.TryWrite(System.Span destination, System.DateTime value, out int bytesWritten) -> bool -static MessagePack.MessagePackPrimitives.TryWrite(System.Span destination, uint value, out int bytesWritten) -> bool -static MessagePack.MessagePackPrimitives.TryWrite(System.Span destination, ulong value, out int bytesWritten) -> bool -static MessagePack.MessagePackPrimitives.TryWrite(System.Span destination, ushort value, out int bytesWritten) -> bool -static MessagePack.MessagePackPrimitives.TryWriteArrayHeader(System.Span destination, uint count, out int bytesWritten) -> bool -static MessagePack.MessagePackPrimitives.TryWriteBinHeader(System.Span destination, uint length, out int bytesWritten) -> bool -static MessagePack.MessagePackPrimitives.TryWriteExtensionFormatHeader(System.Span destination, MessagePack.ExtensionHeader extensionHeader, out int bytesWritten) -> bool -static MessagePack.MessagePackPrimitives.TryWriteInt16(System.Span destination, short value, out int bytesWritten) -> bool -static MessagePack.MessagePackPrimitives.TryWriteInt32(System.Span destination, int value, out int bytesWritten) -> bool -static MessagePack.MessagePackPrimitives.TryWriteInt64(System.Span destination, long value, out int bytesWritten) -> bool -static MessagePack.MessagePackPrimitives.TryWriteInt8(System.Span destination, sbyte value, out int bytesWritten) -> bool -static MessagePack.MessagePackPrimitives.TryWriteMapHeader(System.Span destination, uint count, out int bytesWritten) -> bool -static MessagePack.MessagePackPrimitives.TryWriteNil(System.Span destination, out int bytesWritten) -> bool -static MessagePack.MessagePackPrimitives.TryWriteStringHeader(System.Span destination, uint byteCount, out int bytesWritten) -> bool -static MessagePack.MessagePackPrimitives.TryWriteUInt16(System.Span destination, ushort value, out int bytesWritten) -> bool -static MessagePack.MessagePackPrimitives.TryWriteUInt32(System.Span destination, uint value, out int bytesWritten) -> bool -static MessagePack.MessagePackPrimitives.TryWriteUInt64(System.Span destination, ulong value, out int bytesWritten) -> bool -static MessagePack.MessagePackPrimitives.TryWriteUInt8(System.Span destination, byte value, out int bytesWritten) -> bool -MessagePack.SequencePool.Clear() -> void -static readonly MessagePack.Formatters.Matrix3x2Formatter.Instance -> MessagePack.Formatters.IMessagePackFormatter! -static readonly MessagePack.Formatters.Matrix4x4Formatter.Instance -> MessagePack.Formatters.IMessagePackFormatter! -static readonly MessagePack.Formatters.QuaternionFormatter.Instance -> MessagePack.Formatters.IMessagePackFormatter! -static readonly MessagePack.Formatters.Vector2Formatter.Instance -> MessagePack.Formatters.IMessagePackFormatter! -static readonly MessagePack.Formatters.Vector3Formatter.Instance -> MessagePack.Formatters.IMessagePackFormatter! -static readonly MessagePack.Formatters.Vector4Formatter.Instance -> MessagePack.Formatters.IMessagePackFormatter! -static readonly MessagePack.Resolvers.DynamicEnumAsStringIgnoreCaseResolver.Instance -> MessagePack.Resolvers.DynamicEnumAsStringIgnoreCaseResolver! -static readonly MessagePack.Resolvers.SourceGeneratedFormatterResolver.Instance -> MessagePack.Resolvers.SourceGeneratedFormatterResolver! -static MessagePack.MessagePackSerializer.Typeless.Deserialize(System.ReadOnlyMemory bytes, MessagePack.MessagePackSerializerOptions? options = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) -> object? diff --git a/src/MessagePack/netstandard2.0/PublicAPI.Unshipped.txt b/src/MessagePack/netstandard2.0/PublicAPI.Unshipped.txt deleted file mode 100644 index e69de29bb..000000000 diff --git a/src/MessagePack/netstandard2.1/PublicAPI.Shipped.txt b/src/MessagePack/netstandard2.1/PublicAPI.Shipped.txt deleted file mode 100644 index 611f8e2d3..000000000 --- a/src/MessagePack/netstandard2.1/PublicAPI.Shipped.txt +++ /dev/null @@ -1,1299 +0,0 @@ -#nullable enable -MessagePack.ExtensionHeader -MessagePack.ExtensionHeader.ExtensionHeader(sbyte typeCode, int length) -> void -MessagePack.ExtensionHeader.ExtensionHeader(sbyte typeCode, uint length) -> void -MessagePack.ExtensionHeader.Length.get -> uint -MessagePack.ExtensionHeader.TypeCode.get -> sbyte -MessagePack.ExtensionResult -MessagePack.ExtensionResult.Data.get -> System.Buffers.ReadOnlySequence -MessagePack.ExtensionResult.ExtensionResult(sbyte typeCode, System.Buffers.ReadOnlySequence data) -> void -MessagePack.ExtensionResult.ExtensionResult(sbyte typeCode, System.Memory data) -> void -MessagePack.ExtensionResult.Header.get -> MessagePack.ExtensionHeader -MessagePack.ExtensionResult.TypeCode.get -> sbyte -MessagePack.FormatterNotRegisteredException -MessagePack.FormatterNotRegisteredException.FormatterNotRegisteredException(string? message) -> void -MessagePack.FormatterResolverExtensions -MessagePack.Formatters.ArrayFormatter -MessagePack.Formatters.ArrayFormatter.ArrayFormatter() -> void -MessagePack.Formatters.ArrayFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> T[]? -MessagePack.Formatters.ArrayFormatter.Serialize(ref MessagePack.MessagePackWriter writer, T[]? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.ArraySegmentFormatter -MessagePack.Formatters.ArraySegmentFormatter.ArraySegmentFormatter() -> void -MessagePack.Formatters.ArraySegmentFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> System.ArraySegment -MessagePack.Formatters.ArraySegmentFormatter.Serialize(ref MessagePack.MessagePackWriter writer, System.ArraySegment value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.BigIntegerFormatter -MessagePack.Formatters.BigIntegerFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> System.Numerics.BigInteger -MessagePack.Formatters.BigIntegerFormatter.Serialize(ref MessagePack.MessagePackWriter writer, System.Numerics.BigInteger value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.BitArrayFormatter -MessagePack.Formatters.BitArrayFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> System.Collections.BitArray? -MessagePack.Formatters.BitArrayFormatter.Serialize(ref MessagePack.MessagePackWriter writer, System.Collections.BitArray? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.BooleanArrayFormatter -MessagePack.Formatters.BooleanArrayFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> bool[]? -MessagePack.Formatters.BooleanArrayFormatter.Serialize(ref MessagePack.MessagePackWriter writer, bool[]? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.BooleanFormatter -MessagePack.Formatters.BooleanFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> bool -MessagePack.Formatters.BooleanFormatter.Serialize(ref MessagePack.MessagePackWriter writer, bool value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.ByteArrayFormatter -MessagePack.Formatters.ByteArrayFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> byte[]? -MessagePack.Formatters.ByteArrayFormatter.Serialize(ref MessagePack.MessagePackWriter writer, byte[]? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.ByteArraySegmentFormatter -MessagePack.Formatters.ByteArraySegmentFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> System.ArraySegment -MessagePack.Formatters.ByteArraySegmentFormatter.Serialize(ref MessagePack.MessagePackWriter writer, System.ArraySegment value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.ByteFormatter -MessagePack.Formatters.ByteFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> byte -MessagePack.Formatters.ByteFormatter.Serialize(ref MessagePack.MessagePackWriter writer, byte value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.CharArrayFormatter -MessagePack.Formatters.CharArrayFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> char[]? -MessagePack.Formatters.CharArrayFormatter.Serialize(ref MessagePack.MessagePackWriter writer, char[]? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.CharFormatter -MessagePack.Formatters.CharFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> char -MessagePack.Formatters.CharFormatter.Serialize(ref MessagePack.MessagePackWriter writer, char value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.CollectionFormatterBase -MessagePack.Formatters.CollectionFormatterBase.CollectionFormatterBase() -> void -MessagePack.Formatters.CollectionFormatterBase -MessagePack.Formatters.CollectionFormatterBase.CollectionFormatterBase() -> void -MessagePack.Formatters.CollectionFormatterBase -MessagePack.Formatters.CollectionFormatterBase.CollectionFormatterBase() -> void -MessagePack.Formatters.CollectionFormatterBase.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> TCollection? -MessagePack.Formatters.CollectionFormatterBase.Serialize(ref MessagePack.MessagePackWriter writer, TCollection? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.ComplexFormatter -MessagePack.Formatters.ComplexFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> System.Numerics.Complex -MessagePack.Formatters.ComplexFormatter.Serialize(ref MessagePack.MessagePackWriter writer, System.Numerics.Complex value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.ConcurrentBagFormatter -MessagePack.Formatters.ConcurrentBagFormatter.ConcurrentBagFormatter() -> void -MessagePack.Formatters.ConcurrentDictionaryFormatter -MessagePack.Formatters.ConcurrentDictionaryFormatter.ConcurrentDictionaryFormatter() -> void -MessagePack.Formatters.ConcurrentQueueFormatter -MessagePack.Formatters.ConcurrentQueueFormatter.ConcurrentQueueFormatter() -> void -MessagePack.Formatters.ConcurrentStackFormatter -MessagePack.Formatters.ConcurrentStackFormatter.ConcurrentStackFormatter() -> void -MessagePack.Formatters.DateTimeArrayFormatter -MessagePack.Formatters.DateTimeArrayFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> System.DateTime[]? -MessagePack.Formatters.DateTimeArrayFormatter.Serialize(ref MessagePack.MessagePackWriter writer, System.DateTime[]? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.DateTimeFormatter -MessagePack.Formatters.DateTimeFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> System.DateTime -MessagePack.Formatters.DateTimeFormatter.Serialize(ref MessagePack.MessagePackWriter writer, System.DateTime value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.DateTimeOffsetFormatter -MessagePack.Formatters.DateTimeOffsetFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> System.DateTimeOffset -MessagePack.Formatters.DateTimeOffsetFormatter.Serialize(ref MessagePack.MessagePackWriter writer, System.DateTimeOffset value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.DecimalFormatter -MessagePack.Formatters.DecimalFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> decimal -MessagePack.Formatters.DecimalFormatter.Serialize(ref MessagePack.MessagePackWriter writer, decimal value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.DictionaryFormatter -MessagePack.Formatters.DictionaryFormatter.DictionaryFormatter() -> void -MessagePack.Formatters.DictionaryFormatterBase -MessagePack.Formatters.DictionaryFormatterBase.DictionaryFormatterBase() -> void -MessagePack.Formatters.DictionaryFormatterBase -MessagePack.Formatters.DictionaryFormatterBase.DictionaryFormatterBase() -> void -MessagePack.Formatters.DictionaryFormatterBase -MessagePack.Formatters.DictionaryFormatterBase.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> TDictionary? -MessagePack.Formatters.DictionaryFormatterBase.DictionaryFormatterBase() -> void -MessagePack.Formatters.DictionaryFormatterBase.Serialize(ref MessagePack.MessagePackWriter writer, TDictionary? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.DoubleArrayFormatter -MessagePack.Formatters.DoubleArrayFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> double[]? -MessagePack.Formatters.DoubleArrayFormatter.Serialize(ref MessagePack.MessagePackWriter writer, double[]? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.DoubleFormatter -MessagePack.Formatters.DoubleFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> double -MessagePack.Formatters.DoubleFormatter.Serialize(ref MessagePack.MessagePackWriter writer, double value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.DynamicObjectTypeFallbackFormatter -MessagePack.Formatters.DynamicObjectTypeFallbackFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> object? -MessagePack.Formatters.DynamicObjectTypeFallbackFormatter.Serialize(ref MessagePack.MessagePackWriter writer, object? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.EnumAsStringFormatter -MessagePack.Formatters.EnumAsStringFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> T -MessagePack.Formatters.EnumAsStringFormatter.EnumAsStringFormatter() -> void -MessagePack.Formatters.EnumAsStringFormatter.Serialize(ref MessagePack.MessagePackWriter writer, T value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.ForceByteBlockFormatter -MessagePack.Formatters.ForceByteBlockFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> byte -MessagePack.Formatters.ForceByteBlockFormatter.Serialize(ref MessagePack.MessagePackWriter writer, byte value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.ForceInt16BlockArrayFormatter -MessagePack.Formatters.ForceInt16BlockArrayFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> short[]? -MessagePack.Formatters.ForceInt16BlockArrayFormatter.Serialize(ref MessagePack.MessagePackWriter writer, short[]? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.ForceInt16BlockFormatter -MessagePack.Formatters.ForceInt16BlockFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> short -MessagePack.Formatters.ForceInt16BlockFormatter.Serialize(ref MessagePack.MessagePackWriter writer, short value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.ForceInt32BlockArrayFormatter -MessagePack.Formatters.ForceInt32BlockArrayFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> int[]? -MessagePack.Formatters.ForceInt32BlockArrayFormatter.Serialize(ref MessagePack.MessagePackWriter writer, int[]? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.ForceInt32BlockFormatter -MessagePack.Formatters.ForceInt32BlockFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> int -MessagePack.Formatters.ForceInt32BlockFormatter.Serialize(ref MessagePack.MessagePackWriter writer, int value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.ForceInt64BlockArrayFormatter -MessagePack.Formatters.ForceInt64BlockArrayFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> long[]? -MessagePack.Formatters.ForceInt64BlockArrayFormatter.Serialize(ref MessagePack.MessagePackWriter writer, long[]? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.ForceInt64BlockFormatter -MessagePack.Formatters.ForceInt64BlockFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> long -MessagePack.Formatters.ForceInt64BlockFormatter.Serialize(ref MessagePack.MessagePackWriter writer, long value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.ForceSByteBlockArrayFormatter -MessagePack.Formatters.ForceSByteBlockArrayFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> sbyte[]? -MessagePack.Formatters.ForceSByteBlockArrayFormatter.Serialize(ref MessagePack.MessagePackWriter writer, sbyte[]? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.ForceSByteBlockFormatter -MessagePack.Formatters.ForceSByteBlockFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> sbyte -MessagePack.Formatters.ForceSByteBlockFormatter.Serialize(ref MessagePack.MessagePackWriter writer, sbyte value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.ForceUInt16BlockArrayFormatter -MessagePack.Formatters.ForceUInt16BlockArrayFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> ushort[]? -MessagePack.Formatters.ForceUInt16BlockArrayFormatter.Serialize(ref MessagePack.MessagePackWriter writer, ushort[]? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.ForceUInt16BlockFormatter -MessagePack.Formatters.ForceUInt16BlockFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> ushort -MessagePack.Formatters.ForceUInt16BlockFormatter.Serialize(ref MessagePack.MessagePackWriter writer, ushort value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.ForceUInt32BlockArrayFormatter -MessagePack.Formatters.ForceUInt32BlockArrayFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> uint[]? -MessagePack.Formatters.ForceUInt32BlockArrayFormatter.Serialize(ref MessagePack.MessagePackWriter writer, uint[]? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.ForceUInt32BlockFormatter -MessagePack.Formatters.ForceUInt32BlockFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> uint -MessagePack.Formatters.ForceUInt32BlockFormatter.Serialize(ref MessagePack.MessagePackWriter writer, uint value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.ForceUInt64BlockArrayFormatter -MessagePack.Formatters.ForceUInt64BlockArrayFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> ulong[]? -MessagePack.Formatters.ForceUInt64BlockArrayFormatter.Serialize(ref MessagePack.MessagePackWriter writer, ulong[]? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.ForceUInt64BlockFormatter -MessagePack.Formatters.ForceUInt64BlockFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> ulong -MessagePack.Formatters.ForceUInt64BlockFormatter.Serialize(ref MessagePack.MessagePackWriter writer, ulong value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.FourDimensionalArrayFormatter -MessagePack.Formatters.FourDimensionalArrayFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> T[,,,]? -MessagePack.Formatters.FourDimensionalArrayFormatter.FourDimensionalArrayFormatter() -> void -MessagePack.Formatters.FourDimensionalArrayFormatter.Serialize(ref MessagePack.MessagePackWriter writer, T[,,,]? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.GenericCollectionFormatter -MessagePack.Formatters.GenericCollectionFormatter.GenericCollectionFormatter() -> void -MessagePack.Formatters.GenericDictionaryFormatter -MessagePack.Formatters.GenericDictionaryFormatter.GenericDictionaryFormatter() -> void -MessagePack.Formatters.GenericEnumFormatter -MessagePack.Formatters.GenericEnumFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> T -MessagePack.Formatters.GenericEnumFormatter.GenericEnumFormatter() -> void -MessagePack.Formatters.GenericEnumFormatter.Serialize(ref MessagePack.MessagePackWriter writer, T value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.GuidFormatter -MessagePack.Formatters.GuidFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> System.Guid -MessagePack.Formatters.GuidFormatter.Serialize(ref MessagePack.MessagePackWriter writer, System.Guid value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.HashSetFormatter -MessagePack.Formatters.HashSetFormatter.HashSetFormatter() -> void -MessagePack.Formatters.IMessagePackFormatter -MessagePack.Formatters.IMessagePackFormatter -MessagePack.Formatters.IMessagePackFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> T -MessagePack.Formatters.IMessagePackFormatter.Serialize(ref MessagePack.MessagePackWriter writer, T value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.IgnoreFormatter -MessagePack.Formatters.IgnoreFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> T? -MessagePack.Formatters.IgnoreFormatter.IgnoreFormatter() -> void -MessagePack.Formatters.IgnoreFormatter.Serialize(ref MessagePack.MessagePackWriter writer, T? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.Int16ArrayFormatter -MessagePack.Formatters.Int16ArrayFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> short[]? -MessagePack.Formatters.Int16ArrayFormatter.Serialize(ref MessagePack.MessagePackWriter writer, short[]? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.Int16Formatter -MessagePack.Formatters.Int16Formatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> short -MessagePack.Formatters.Int16Formatter.Serialize(ref MessagePack.MessagePackWriter writer, short value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.Int32ArrayFormatter -MessagePack.Formatters.Int32ArrayFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> int[]? -MessagePack.Formatters.Int32ArrayFormatter.Serialize(ref MessagePack.MessagePackWriter writer, int[]? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.Int32Formatter -MessagePack.Formatters.Int32Formatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> int -MessagePack.Formatters.Int32Formatter.Serialize(ref MessagePack.MessagePackWriter writer, int value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.Int64ArrayFormatter -MessagePack.Formatters.Int64ArrayFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> long[]? -MessagePack.Formatters.Int64ArrayFormatter.Serialize(ref MessagePack.MessagePackWriter writer, long[]? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.Int64Formatter -MessagePack.Formatters.Int64Formatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> long -MessagePack.Formatters.Int64Formatter.Serialize(ref MessagePack.MessagePackWriter writer, long value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.InterfaceCollectionFormatter -MessagePack.Formatters.InterfaceCollectionFormatter.InterfaceCollectionFormatter() -> void -MessagePack.Formatters.InterfaceDictionaryFormatter -MessagePack.Formatters.InterfaceDictionaryFormatter.InterfaceDictionaryFormatter() -> void -MessagePack.Formatters.InterfaceEnumerableFormatter -MessagePack.Formatters.InterfaceEnumerableFormatter.InterfaceEnumerableFormatter() -> void -MessagePack.Formatters.InterfaceGroupingFormatter -MessagePack.Formatters.InterfaceGroupingFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> System.Linq.IGrouping? -MessagePack.Formatters.InterfaceGroupingFormatter.InterfaceGroupingFormatter() -> void -MessagePack.Formatters.InterfaceGroupingFormatter.Serialize(ref MessagePack.MessagePackWriter writer, System.Linq.IGrouping? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.InterfaceListFormatter -MessagePack.Formatters.InterfaceListFormatter.InterfaceListFormatter() -> void -MessagePack.Formatters.InterfaceLookupFormatter -MessagePack.Formatters.InterfaceLookupFormatter.InterfaceLookupFormatter() -> void -MessagePack.Formatters.InterfaceReadOnlyCollectionFormatter -MessagePack.Formatters.InterfaceReadOnlyCollectionFormatter.InterfaceReadOnlyCollectionFormatter() -> void -MessagePack.Formatters.InterfaceReadOnlyDictionaryFormatter -MessagePack.Formatters.InterfaceReadOnlyDictionaryFormatter.InterfaceReadOnlyDictionaryFormatter() -> void -MessagePack.Formatters.InterfaceReadOnlyListFormatter -MessagePack.Formatters.InterfaceReadOnlyListFormatter.InterfaceReadOnlyListFormatter() -> void -MessagePack.Formatters.InterfaceSetFormatter -MessagePack.Formatters.InterfaceSetFormatter.InterfaceSetFormatter() -> void -MessagePack.Formatters.KeyValuePairFormatter -MessagePack.Formatters.KeyValuePairFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> System.Collections.Generic.KeyValuePair -MessagePack.Formatters.KeyValuePairFormatter.KeyValuePairFormatter() -> void -MessagePack.Formatters.KeyValuePairFormatter.Serialize(ref MessagePack.MessagePackWriter writer, System.Collections.Generic.KeyValuePair value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.LazyFormatter -MessagePack.Formatters.LazyFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> System.Lazy? -MessagePack.Formatters.LazyFormatter.LazyFormatter() -> void -MessagePack.Formatters.LazyFormatter.Serialize(ref MessagePack.MessagePackWriter writer, System.Lazy? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.LinkedListFormatter -MessagePack.Formatters.LinkedListFormatter.LinkedListFormatter() -> void -MessagePack.Formatters.ListFormatter -MessagePack.Formatters.ListFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> System.Collections.Generic.List? -MessagePack.Formatters.ListFormatter.ListFormatter() -> void -MessagePack.Formatters.ListFormatter.Serialize(ref MessagePack.MessagePackWriter writer, System.Collections.Generic.List? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.NativeDateTimeArrayFormatter -MessagePack.Formatters.NativeDateTimeArrayFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> System.DateTime[]? -MessagePack.Formatters.NativeDateTimeArrayFormatter.NativeDateTimeArrayFormatter() -> void -MessagePack.Formatters.NativeDateTimeArrayFormatter.Serialize(ref MessagePack.MessagePackWriter writer, System.DateTime[]? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.NativeDateTimeFormatter -MessagePack.Formatters.NativeDateTimeFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> System.DateTime -MessagePack.Formatters.NativeDateTimeFormatter.NativeDateTimeFormatter() -> void -MessagePack.Formatters.NativeDateTimeFormatter.Serialize(ref MessagePack.MessagePackWriter writer, System.DateTime value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.NativeDecimalFormatter -MessagePack.Formatters.NativeDecimalFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> decimal -MessagePack.Formatters.NativeDecimalFormatter.Serialize(ref MessagePack.MessagePackWriter writer, decimal value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.NativeGuidFormatter -MessagePack.Formatters.NativeGuidFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> System.Guid -MessagePack.Formatters.NativeGuidFormatter.Serialize(ref MessagePack.MessagePackWriter writer, System.Guid value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.NilFormatter -MessagePack.Formatters.NilFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> MessagePack.Nil -MessagePack.Formatters.NilFormatter.Serialize(ref MessagePack.MessagePackWriter writer, MessagePack.Nil value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.NonGenericDictionaryFormatter -MessagePack.Formatters.NonGenericDictionaryFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> T? -MessagePack.Formatters.NonGenericDictionaryFormatter.NonGenericDictionaryFormatter() -> void -MessagePack.Formatters.NonGenericDictionaryFormatter.Serialize(ref MessagePack.MessagePackWriter writer, T? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.NonGenericInterfaceDictionaryFormatter -MessagePack.Formatters.NonGenericInterfaceDictionaryFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> System.Collections.IDictionary? -MessagePack.Formatters.NonGenericInterfaceDictionaryFormatter.Serialize(ref MessagePack.MessagePackWriter writer, System.Collections.IDictionary? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.NonGenericInterfaceListFormatter -MessagePack.Formatters.NonGenericInterfaceListFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> System.Collections.IList? -MessagePack.Formatters.NonGenericInterfaceListFormatter.Serialize(ref MessagePack.MessagePackWriter writer, System.Collections.IList? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.NonGenericListFormatter -MessagePack.Formatters.NonGenericListFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> T? -MessagePack.Formatters.NonGenericListFormatter.NonGenericListFormatter() -> void -MessagePack.Formatters.NonGenericListFormatter.Serialize(ref MessagePack.MessagePackWriter writer, T? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.NullableBooleanFormatter -MessagePack.Formatters.NullableBooleanFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> bool? -MessagePack.Formatters.NullableBooleanFormatter.Serialize(ref MessagePack.MessagePackWriter writer, bool? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.NullableByteFormatter -MessagePack.Formatters.NullableByteFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> byte? -MessagePack.Formatters.NullableByteFormatter.Serialize(ref MessagePack.MessagePackWriter writer, byte? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.NullableCharFormatter -MessagePack.Formatters.NullableCharFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> char? -MessagePack.Formatters.NullableCharFormatter.Serialize(ref MessagePack.MessagePackWriter writer, char? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.NullableDateTimeFormatter -MessagePack.Formatters.NullableDateTimeFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> System.DateTime? -MessagePack.Formatters.NullableDateTimeFormatter.Serialize(ref MessagePack.MessagePackWriter writer, System.DateTime? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.NullableDoubleFormatter -MessagePack.Formatters.NullableDoubleFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> double? -MessagePack.Formatters.NullableDoubleFormatter.Serialize(ref MessagePack.MessagePackWriter writer, double? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.NullableForceByteBlockFormatter -MessagePack.Formatters.NullableForceByteBlockFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> byte? -MessagePack.Formatters.NullableForceByteBlockFormatter.Serialize(ref MessagePack.MessagePackWriter writer, byte? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.NullableForceInt16BlockFormatter -MessagePack.Formatters.NullableForceInt16BlockFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> short? -MessagePack.Formatters.NullableForceInt16BlockFormatter.Serialize(ref MessagePack.MessagePackWriter writer, short? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.NullableForceInt32BlockFormatter -MessagePack.Formatters.NullableForceInt32BlockFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> int? -MessagePack.Formatters.NullableForceInt32BlockFormatter.Serialize(ref MessagePack.MessagePackWriter writer, int? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.NullableForceInt64BlockFormatter -MessagePack.Formatters.NullableForceInt64BlockFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> long? -MessagePack.Formatters.NullableForceInt64BlockFormatter.Serialize(ref MessagePack.MessagePackWriter writer, long? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.NullableForceSByteBlockFormatter -MessagePack.Formatters.NullableForceSByteBlockFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> sbyte? -MessagePack.Formatters.NullableForceSByteBlockFormatter.Serialize(ref MessagePack.MessagePackWriter writer, sbyte? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.NullableForceUInt16BlockFormatter -MessagePack.Formatters.NullableForceUInt16BlockFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> ushort? -MessagePack.Formatters.NullableForceUInt16BlockFormatter.Serialize(ref MessagePack.MessagePackWriter writer, ushort? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.NullableForceUInt32BlockFormatter -MessagePack.Formatters.NullableForceUInt32BlockFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> uint? -MessagePack.Formatters.NullableForceUInt32BlockFormatter.Serialize(ref MessagePack.MessagePackWriter writer, uint? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.NullableForceUInt64BlockFormatter -MessagePack.Formatters.NullableForceUInt64BlockFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> ulong? -MessagePack.Formatters.NullableForceUInt64BlockFormatter.Serialize(ref MessagePack.MessagePackWriter writer, ulong? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.NullableFormatter -MessagePack.Formatters.NullableFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> T? -MessagePack.Formatters.NullableFormatter.NullableFormatter() -> void -MessagePack.Formatters.NullableFormatter.Serialize(ref MessagePack.MessagePackWriter writer, T? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.NullableInt16Formatter -MessagePack.Formatters.NullableInt16Formatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> short? -MessagePack.Formatters.NullableInt16Formatter.Serialize(ref MessagePack.MessagePackWriter writer, short? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.NullableInt32Formatter -MessagePack.Formatters.NullableInt32Formatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> int? -MessagePack.Formatters.NullableInt32Formatter.Serialize(ref MessagePack.MessagePackWriter writer, int? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.NullableInt64Formatter -MessagePack.Formatters.NullableInt64Formatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> long? -MessagePack.Formatters.NullableInt64Formatter.Serialize(ref MessagePack.MessagePackWriter writer, long? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.NullableNilFormatter -MessagePack.Formatters.NullableNilFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> MessagePack.Nil? -MessagePack.Formatters.NullableNilFormatter.Serialize(ref MessagePack.MessagePackWriter writer, MessagePack.Nil? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.NullableSByteFormatter -MessagePack.Formatters.NullableSByteFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> sbyte? -MessagePack.Formatters.NullableSByteFormatter.Serialize(ref MessagePack.MessagePackWriter writer, sbyte? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.NullableSingleFormatter -MessagePack.Formatters.NullableSingleFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> float? -MessagePack.Formatters.NullableSingleFormatter.Serialize(ref MessagePack.MessagePackWriter writer, float? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.NullableStringArrayFormatter -MessagePack.Formatters.NullableStringArrayFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> string?[]? -MessagePack.Formatters.NullableStringArrayFormatter.Serialize(ref MessagePack.MessagePackWriter writer, string?[]? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.NullableStringFormatter -MessagePack.Formatters.NullableStringFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> string? -MessagePack.Formatters.NullableStringFormatter.Serialize(ref MessagePack.MessagePackWriter writer, string? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.NullableUInt16Formatter -MessagePack.Formatters.NullableUInt16Formatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> ushort? -MessagePack.Formatters.NullableUInt16Formatter.Serialize(ref MessagePack.MessagePackWriter writer, ushort? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.NullableUInt32Formatter -MessagePack.Formatters.NullableUInt32Formatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> uint? -MessagePack.Formatters.NullableUInt32Formatter.Serialize(ref MessagePack.MessagePackWriter writer, uint? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.NullableUInt64Formatter -MessagePack.Formatters.NullableUInt64Formatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> ulong? -MessagePack.Formatters.NullableUInt64Formatter.Serialize(ref MessagePack.MessagePackWriter writer, ulong? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.ObservableCollectionFormatter -MessagePack.Formatters.ObservableCollectionFormatter.ObservableCollectionFormatter() -> void -MessagePack.Formatters.PrimitiveObjectFormatter -MessagePack.Formatters.PrimitiveObjectFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> object? -MessagePack.Formatters.PrimitiveObjectFormatter.Serialize(ref MessagePack.MessagePackWriter writer, object? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.QueueFormatter -MessagePack.Formatters.QueueFormatter.QueueFormatter() -> void -MessagePack.Formatters.ReadOnlyCollectionFormatter -MessagePack.Formatters.ReadOnlyCollectionFormatter.ReadOnlyCollectionFormatter() -> void -MessagePack.Formatters.ReadOnlyDictionaryFormatter -MessagePack.Formatters.ReadOnlyDictionaryFormatter.ReadOnlyDictionaryFormatter() -> void -MessagePack.Formatters.ReadOnlyObservableCollectionFormatter -MessagePack.Formatters.ReadOnlyObservableCollectionFormatter.ReadOnlyObservableCollectionFormatter() -> void -MessagePack.Formatters.SByteArrayFormatter -MessagePack.Formatters.SByteArrayFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> sbyte[]? -MessagePack.Formatters.SByteArrayFormatter.Serialize(ref MessagePack.MessagePackWriter writer, sbyte[]? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.SByteFormatter -MessagePack.Formatters.SByteFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> sbyte -MessagePack.Formatters.SByteFormatter.Serialize(ref MessagePack.MessagePackWriter writer, sbyte value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.SingleArrayFormatter -MessagePack.Formatters.SingleArrayFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> float[]? -MessagePack.Formatters.SingleArrayFormatter.Serialize(ref MessagePack.MessagePackWriter writer, float[]? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.SingleFormatter -MessagePack.Formatters.SingleFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> float -MessagePack.Formatters.SingleFormatter.Serialize(ref MessagePack.MessagePackWriter writer, float value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.SortedDictionaryFormatter -MessagePack.Formatters.SortedDictionaryFormatter.SortedDictionaryFormatter() -> void -MessagePack.Formatters.SortedListFormatter -MessagePack.Formatters.SortedListFormatter.SortedListFormatter() -> void -MessagePack.Formatters.StackFormatter -MessagePack.Formatters.StackFormatter.StackFormatter() -> void -MessagePack.Formatters.StaticNullableFormatter -MessagePack.Formatters.StaticNullableFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> T? -MessagePack.Formatters.StaticNullableFormatter.Serialize(ref MessagePack.MessagePackWriter writer, T? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.StaticNullableFormatter.StaticNullableFormatter(MessagePack.Formatters.IMessagePackFormatter! underlyingFormatter) -> void -MessagePack.Formatters.StringBuilderFormatter -MessagePack.Formatters.StringBuilderFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> System.Text.StringBuilder? -MessagePack.Formatters.StringBuilderFormatter.Serialize(ref MessagePack.MessagePackWriter writer, System.Text.StringBuilder? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.ThreeDimensionalArrayFormatter -MessagePack.Formatters.ThreeDimensionalArrayFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> T[,,]? -MessagePack.Formatters.ThreeDimensionalArrayFormatter.Serialize(ref MessagePack.MessagePackWriter writer, T[,,]? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.ThreeDimensionalArrayFormatter.ThreeDimensionalArrayFormatter() -> void -MessagePack.Formatters.TimeSpanFormatter -MessagePack.Formatters.TimeSpanFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> System.TimeSpan -MessagePack.Formatters.TimeSpanFormatter.Serialize(ref MessagePack.MessagePackWriter writer, System.TimeSpan value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.TupleFormatter -MessagePack.Formatters.TupleFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> System.Tuple? -MessagePack.Formatters.TupleFormatter.Serialize(ref MessagePack.MessagePackWriter writer, System.Tuple? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.TupleFormatter.TupleFormatter() -> void -MessagePack.Formatters.TupleFormatter -MessagePack.Formatters.TupleFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> System.Tuple? -MessagePack.Formatters.TupleFormatter.Serialize(ref MessagePack.MessagePackWriter writer, System.Tuple? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.TupleFormatter.TupleFormatter() -> void -MessagePack.Formatters.TupleFormatter -MessagePack.Formatters.TupleFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> System.Tuple? -MessagePack.Formatters.TupleFormatter.Serialize(ref MessagePack.MessagePackWriter writer, System.Tuple? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.TupleFormatter.TupleFormatter() -> void -MessagePack.Formatters.TupleFormatter -MessagePack.Formatters.TupleFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> System.Tuple? -MessagePack.Formatters.TupleFormatter.Serialize(ref MessagePack.MessagePackWriter writer, System.Tuple? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.TupleFormatter.TupleFormatter() -> void -MessagePack.Formatters.TupleFormatter -MessagePack.Formatters.TupleFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> System.Tuple? -MessagePack.Formatters.TupleFormatter.Serialize(ref MessagePack.MessagePackWriter writer, System.Tuple? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.TupleFormatter.TupleFormatter() -> void -MessagePack.Formatters.TupleFormatter -MessagePack.Formatters.TupleFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> System.Tuple? -MessagePack.Formatters.TupleFormatter.Serialize(ref MessagePack.MessagePackWriter writer, System.Tuple? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.TupleFormatter.TupleFormatter() -> void -MessagePack.Formatters.TupleFormatter -MessagePack.Formatters.TupleFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> System.Tuple? -MessagePack.Formatters.TupleFormatter.Serialize(ref MessagePack.MessagePackWriter writer, System.Tuple? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.TupleFormatter.TupleFormatter() -> void -MessagePack.Formatters.TupleFormatter -MessagePack.Formatters.TupleFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> System.Tuple? -MessagePack.Formatters.TupleFormatter.Serialize(ref MessagePack.MessagePackWriter writer, System.Tuple? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.TupleFormatter.TupleFormatter() -> void -MessagePack.Formatters.TwoDimensionalArrayFormatter -MessagePack.Formatters.TwoDimensionalArrayFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> T[,]? -MessagePack.Formatters.TwoDimensionalArrayFormatter.Serialize(ref MessagePack.MessagePackWriter writer, T[,]? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.TwoDimensionalArrayFormatter.TwoDimensionalArrayFormatter() -> void -MessagePack.Formatters.TypelessFormatter -MessagePack.Formatters.TypelessFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> object? -MessagePack.Formatters.TypelessFormatter.Serialize(ref MessagePack.MessagePackWriter writer, object? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.UInt16ArrayFormatter -MessagePack.Formatters.UInt16ArrayFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> ushort[]? -MessagePack.Formatters.UInt16ArrayFormatter.Serialize(ref MessagePack.MessagePackWriter writer, ushort[]? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.UInt16Formatter -MessagePack.Formatters.UInt16Formatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> ushort -MessagePack.Formatters.UInt16Formatter.Serialize(ref MessagePack.MessagePackWriter writer, ushort value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.UInt32ArrayFormatter -MessagePack.Formatters.UInt32ArrayFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> uint[]? -MessagePack.Formatters.UInt32ArrayFormatter.Serialize(ref MessagePack.MessagePackWriter writer, uint[]? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.UInt32Formatter -MessagePack.Formatters.UInt32Formatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> uint -MessagePack.Formatters.UInt32Formatter.Serialize(ref MessagePack.MessagePackWriter writer, uint value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.UInt64ArrayFormatter -MessagePack.Formatters.UInt64ArrayFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> ulong[]? -MessagePack.Formatters.UInt64ArrayFormatter.Serialize(ref MessagePack.MessagePackWriter writer, ulong[]? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.UInt64Formatter -MessagePack.Formatters.UInt64Formatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> ulong -MessagePack.Formatters.UInt64Formatter.Serialize(ref MessagePack.MessagePackWriter writer, ulong value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.UriFormatter -MessagePack.Formatters.UriFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> System.Uri? -MessagePack.Formatters.UriFormatter.Serialize(ref MessagePack.MessagePackWriter writer, System.Uri? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.ValueTupleFormatter -MessagePack.Formatters.ValueTupleFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> System.ValueTuple -MessagePack.Formatters.ValueTupleFormatter.Serialize(ref MessagePack.MessagePackWriter writer, System.ValueTuple value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.ValueTupleFormatter.ValueTupleFormatter() -> void -MessagePack.Formatters.ValueTupleFormatter -MessagePack.Formatters.ValueTupleFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> (T1, T2, T3, T4, T5, T6, T7) -MessagePack.Formatters.ValueTupleFormatter.Serialize(ref MessagePack.MessagePackWriter writer, (T1, T2, T3, T4, T5, T6, T7) value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.ValueTupleFormatter.ValueTupleFormatter() -> void -MessagePack.Formatters.ValueTupleFormatter -MessagePack.Formatters.ValueTupleFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> (T1, T2, T3, T4, T5, T6) -MessagePack.Formatters.ValueTupleFormatter.Serialize(ref MessagePack.MessagePackWriter writer, (T1, T2, T3, T4, T5, T6) value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.ValueTupleFormatter.ValueTupleFormatter() -> void -MessagePack.Formatters.ValueTupleFormatter -MessagePack.Formatters.ValueTupleFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> (T1, T2, T3, T4, T5) -MessagePack.Formatters.ValueTupleFormatter.Serialize(ref MessagePack.MessagePackWriter writer, (T1, T2, T3, T4, T5) value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.ValueTupleFormatter.ValueTupleFormatter() -> void -MessagePack.Formatters.ValueTupleFormatter -MessagePack.Formatters.ValueTupleFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> (T1, T2, T3, T4) -MessagePack.Formatters.ValueTupleFormatter.Serialize(ref MessagePack.MessagePackWriter writer, (T1, T2, T3, T4) value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.ValueTupleFormatter.ValueTupleFormatter() -> void -MessagePack.Formatters.ValueTupleFormatter -MessagePack.Formatters.ValueTupleFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> (T1, T2, T3) -MessagePack.Formatters.ValueTupleFormatter.Serialize(ref MessagePack.MessagePackWriter writer, (T1, T2, T3) value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.ValueTupleFormatter.ValueTupleFormatter() -> void -MessagePack.Formatters.ValueTupleFormatter -MessagePack.Formatters.ValueTupleFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> (T1, T2) -MessagePack.Formatters.ValueTupleFormatter.Serialize(ref MessagePack.MessagePackWriter writer, (T1, T2) value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.ValueTupleFormatter.ValueTupleFormatter() -> void -MessagePack.Formatters.ValueTupleFormatter -MessagePack.Formatters.ValueTupleFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> System.ValueTuple -MessagePack.Formatters.ValueTupleFormatter.Serialize(ref MessagePack.MessagePackWriter writer, System.ValueTuple value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.ValueTupleFormatter.ValueTupleFormatter() -> void -MessagePack.Formatters.VersionFormatter -MessagePack.Formatters.VersionFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> System.Version? -MessagePack.Formatters.VersionFormatter.Serialize(ref MessagePack.MessagePackWriter writer, System.Version? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.IFormatterResolver -MessagePack.IFormatterResolver.GetFormatter() -> MessagePack.Formatters.IMessagePackFormatter? -MessagePack.Internal.AutomataDictionary -MessagePack.Internal.AutomataDictionary.Add(string! str, int value) -> void -MessagePack.Internal.AutomataDictionary.AutomataDictionary() -> void -MessagePack.Internal.AutomataDictionary.EmitMatch(System.Reflection.Emit.ILGenerator! il, System.Reflection.Emit.LocalBuilder! bytesSpan, System.Reflection.Emit.LocalBuilder! key, System.Action>! onFound, System.Action! onNotFound) -> void -MessagePack.Internal.AutomataDictionary.GetEnumerator() -> System.Collections.Generic.IEnumerator>! -MessagePack.Internal.AutomataDictionary.TryGetValue(System.ReadOnlySpan bytes, out int value) -> bool -MessagePack.Internal.AutomataDictionary.TryGetValue(in System.Buffers.ReadOnlySequence bytes, out int value) -> bool -MessagePack.Internal.AutomataKeyGen -MessagePack.Internal.ByteArrayStringHashTable -MessagePack.Internal.ByteArrayStringHashTable.Add(byte[]! key, int value) -> void -MessagePack.Internal.ByteArrayStringHashTable.Add(string! key, int value) -> void -MessagePack.Internal.ByteArrayStringHashTable.ByteArrayStringHashTable(int capacity) -> void -MessagePack.Internal.ByteArrayStringHashTable.ByteArrayStringHashTable(int capacity, float loadFactor) -> void -MessagePack.Internal.ByteArrayStringHashTable.GetEnumerator() -> System.Collections.Generic.IEnumerator>! -MessagePack.Internal.ByteArrayStringHashTable.TryGetValue(System.ReadOnlySpan key, out int value) -> bool -MessagePack.Internal.ByteArrayStringHashTable.TryGetValue(in System.Buffers.ReadOnlySequence key, out int value) -> bool -MessagePack.Internal.CodeGenHelpers -MessagePack.Internal.RuntimeTypeHandleEqualityComparer -MessagePack.Internal.RuntimeTypeHandleEqualityComparer.Equals(System.RuntimeTypeHandle x, System.RuntimeTypeHandle y) -> bool -MessagePack.Internal.RuntimeTypeHandleEqualityComparer.GetHashCode(System.RuntimeTypeHandle obj) -> int -MessagePack.Internal.UnsafeMemory -MessagePack.Internal.UnsafeMemory32 -MessagePack.Internal.UnsafeMemory64 -MessagePack.MessagePackCode -MessagePack.MessagePackCompression -MessagePack.MessagePackCompression.Lz4Block = 1 -> MessagePack.MessagePackCompression -MessagePack.MessagePackCompression.Lz4BlockArray = 2 -> MessagePack.MessagePackCompression -MessagePack.MessagePackCompression.None = 0 -> MessagePack.MessagePackCompression -MessagePack.MessagePackRange -MessagePack.MessagePackReader -MessagePack.MessagePackReader.CancellationToken.get -> System.Threading.CancellationToken -MessagePack.MessagePackReader.CancellationToken.set -> void -MessagePack.MessagePackReader.Clone(scoped in System.Buffers.ReadOnlySequence readOnlySequence) -> MessagePack.MessagePackReader -MessagePack.MessagePackReader.Consumed.get -> long -MessagePack.MessagePackReader.CreatePeekReader() -> MessagePack.MessagePackReader -MessagePack.MessagePackReader.End.get -> bool -MessagePack.MessagePackReader.IsNil.get -> bool -MessagePack.MessagePackReader.MessagePackReader(System.ReadOnlyMemory memory) -> void -MessagePack.MessagePackReader.MessagePackReader(scoped in System.Buffers.ReadOnlySequence readOnlySequence) -> void -MessagePack.MessagePackReader.NextCode.get -> byte -MessagePack.MessagePackReader.NextMessagePackType.get -> MessagePack.MessagePackType -MessagePack.MessagePackReader.Position.get -> System.SequencePosition -MessagePack.MessagePackReader.ReadArrayHeader() -> int -MessagePack.MessagePackReader.ReadBoolean() -> bool -MessagePack.MessagePackReader.ReadByte() -> byte -MessagePack.MessagePackReader.ReadBytes() -> System.Buffers.ReadOnlySequence? -MessagePack.MessagePackReader.ReadChar() -> char -MessagePack.MessagePackReader.ReadDateTime() -> System.DateTime -MessagePack.MessagePackReader.ReadDouble() -> double -MessagePack.MessagePackReader.ReadExtensionFormat() -> MessagePack.ExtensionResult -MessagePack.MessagePackReader.ReadExtensionFormatHeader() -> MessagePack.ExtensionHeader -MessagePack.MessagePackReader.ReadInt16() -> short -MessagePack.MessagePackReader.ReadInt32() -> int -MessagePack.MessagePackReader.ReadInt64() -> long -MessagePack.MessagePackReader.ReadMapHeader() -> int -MessagePack.MessagePackReader.ReadNil() -> MessagePack.Nil -MessagePack.MessagePackReader.ReadRaw() -> System.Buffers.ReadOnlySequence -MessagePack.MessagePackReader.ReadRaw(long length) -> System.Buffers.ReadOnlySequence -MessagePack.MessagePackReader.ReadSByte() -> sbyte -MessagePack.MessagePackReader.ReadSingle() -> float -MessagePack.MessagePackReader.ReadString() -> string? -MessagePack.MessagePackReader.ReadStringSequence() -> System.Buffers.ReadOnlySequence? -MessagePack.MessagePackReader.ReadUInt16() -> ushort -MessagePack.MessagePackReader.ReadUInt32() -> uint -MessagePack.MessagePackReader.ReadUInt64() -> ulong -MessagePack.MessagePackReader.Sequence.get -> System.Buffers.ReadOnlySequence -MessagePack.MessagePackReader.Skip() -> void -MessagePack.MessagePackReader.TryReadNil() -> bool -MessagePack.MessagePackReader.TryReadStringSpan(out System.ReadOnlySpan span) -> bool -MessagePack.MessagePackSerializationException -MessagePack.MessagePackSerializationException.MessagePackSerializationException() -> void -MessagePack.MessagePackSerializationException.MessagePackSerializationException(System.Runtime.Serialization.SerializationInfo! info, System.Runtime.Serialization.StreamingContext context) -> void -MessagePack.MessagePackSerializationException.MessagePackSerializationException(string? message) -> void -MessagePack.MessagePackSerializationException.MessagePackSerializationException(string? message, System.Exception? inner) -> void -MessagePack.MessagePackSerializer -MessagePack.MessagePackSerializer.Typeless -MessagePack.MessagePackSerializerOptions -MessagePack.MessagePackSerializerOptions.AllowAssemblyVersionMismatch.get -> bool -MessagePack.MessagePackSerializerOptions.Compression.get -> MessagePack.MessagePackCompression -MessagePack.MessagePackSerializerOptions.MessagePackSerializerOptions(MessagePack.IFormatterResolver! resolver) -> void -MessagePack.MessagePackSerializerOptions.MessagePackSerializerOptions(MessagePack.MessagePackSerializerOptions! copyFrom) -> void -MessagePack.MessagePackSerializerOptions.OldSpec.get -> bool? -MessagePack.MessagePackSerializerOptions.OmitAssemblyVersion.get -> bool -MessagePack.MessagePackSerializerOptions.Resolver.get -> MessagePack.IFormatterResolver! -MessagePack.MessagePackSerializerOptions.WithAllowAssemblyVersionMismatch(bool allowAssemblyVersionMismatch) -> MessagePack.MessagePackSerializerOptions! -MessagePack.MessagePackSerializerOptions.WithCompression(MessagePack.MessagePackCompression compression) -> MessagePack.MessagePackSerializerOptions! -MessagePack.MessagePackSerializerOptions.WithOldSpec(bool? oldSpec = true) -> MessagePack.MessagePackSerializerOptions! -MessagePack.MessagePackSerializerOptions.WithOmitAssemblyVersion(bool omitAssemblyVersion) -> MessagePack.MessagePackSerializerOptions! -MessagePack.MessagePackSerializerOptions.WithResolver(MessagePack.IFormatterResolver! resolver) -> MessagePack.MessagePackSerializerOptions! -MessagePack.MessagePackStreamReader -MessagePack.MessagePackStreamReader.Dispose() -> void -MessagePack.MessagePackStreamReader.MessagePackStreamReader(System.IO.Stream! stream) -> void -MessagePack.MessagePackStreamReader.ReadAsync(System.Threading.CancellationToken cancellationToken) -> System.Threading.Tasks.ValueTask?> -MessagePack.MessagePackStreamReader.RemainingBytes.get -> System.Buffers.ReadOnlySequence -MessagePack.MessagePackType -MessagePack.MessagePackType.Array = 7 -> MessagePack.MessagePackType -MessagePack.MessagePackType.Binary = 6 -> MessagePack.MessagePackType -MessagePack.MessagePackType.Boolean = 3 -> MessagePack.MessagePackType -MessagePack.MessagePackType.Extension = 9 -> MessagePack.MessagePackType -MessagePack.MessagePackType.Float = 4 -> MessagePack.MessagePackType -MessagePack.MessagePackType.Integer = 1 -> MessagePack.MessagePackType -MessagePack.MessagePackType.Map = 8 -> MessagePack.MessagePackType -MessagePack.MessagePackType.Nil = 2 -> MessagePack.MessagePackType -MessagePack.MessagePackType.String = 5 -> MessagePack.MessagePackType -MessagePack.MessagePackType.Unknown = 0 -> MessagePack.MessagePackType -MessagePack.MessagePackWriter -MessagePack.MessagePackWriter.Advance(int length) -> void -MessagePack.MessagePackWriter.CancellationToken.get -> System.Threading.CancellationToken -MessagePack.MessagePackWriter.CancellationToken.set -> void -MessagePack.MessagePackWriter.Clone(System.Buffers.IBufferWriter! writer) -> MessagePack.MessagePackWriter -MessagePack.MessagePackWriter.Flush() -> void -MessagePack.MessagePackWriter.GetSpan(int length) -> System.Span -MessagePack.MessagePackWriter.MessagePackWriter(System.Buffers.IBufferWriter! writer) -> void -MessagePack.MessagePackWriter.OldSpec.get -> bool -MessagePack.MessagePackWriter.OldSpec.set -> void -MessagePack.MessagePackWriter.Write(System.DateTime dateTime) -> void -MessagePack.MessagePackWriter.Write(System.ReadOnlySpan src) -> void -MessagePack.MessagePackWriter.Write(System.ReadOnlySpan value) -> void -MessagePack.MessagePackWriter.Write(bool value) -> void -MessagePack.MessagePackWriter.Write(byte value) -> void -MessagePack.MessagePackWriter.Write(byte[]? src) -> void -MessagePack.MessagePackWriter.Write(char value) -> void -MessagePack.MessagePackWriter.Write(double value) -> void -MessagePack.MessagePackWriter.Write(float value) -> void -MessagePack.MessagePackWriter.Write(in System.Buffers.ReadOnlySequence src) -> void -MessagePack.MessagePackWriter.Write(int value) -> void -MessagePack.MessagePackWriter.Write(long value) -> void -MessagePack.MessagePackWriter.Write(sbyte value) -> void -MessagePack.MessagePackWriter.Write(short value) -> void -MessagePack.MessagePackWriter.Write(string? value) -> void -MessagePack.MessagePackWriter.Write(uint value) -> void -MessagePack.MessagePackWriter.Write(ulong value) -> void -MessagePack.MessagePackWriter.Write(ushort value) -> void -MessagePack.MessagePackWriter.WriteArrayHeader(int count) -> void -MessagePack.MessagePackWriter.WriteArrayHeader(uint count) -> void -MessagePack.MessagePackWriter.WriteExtensionFormat(MessagePack.ExtensionResult extensionData) -> void -MessagePack.MessagePackWriter.WriteExtensionFormatHeader(MessagePack.ExtensionHeader extensionHeader) -> void -MessagePack.MessagePackWriter.WriteInt16(short value) -> void -MessagePack.MessagePackWriter.WriteInt32(int value) -> void -MessagePack.MessagePackWriter.WriteInt64(long value) -> void -MessagePack.MessagePackWriter.WriteInt8(sbyte value) -> void -MessagePack.MessagePackWriter.WriteMapHeader(int count) -> void -MessagePack.MessagePackWriter.WriteMapHeader(uint count) -> void -MessagePack.MessagePackWriter.WriteNil() -> void -MessagePack.MessagePackWriter.WriteRaw(System.ReadOnlySpan rawMessagePackBlock) -> void -MessagePack.MessagePackWriter.WriteRaw(in System.Buffers.ReadOnlySequence rawMessagePackBlock) -> void -MessagePack.MessagePackWriter.WriteString(System.ReadOnlySpan utf8stringBytes) -> void -MessagePack.MessagePackWriter.WriteString(in System.Buffers.ReadOnlySequence utf8stringBytes) -> void -MessagePack.MessagePackWriter.WriteUInt16(ushort value) -> void -MessagePack.MessagePackWriter.WriteUInt32(uint value) -> void -MessagePack.MessagePackWriter.WriteUInt64(ulong value) -> void -MessagePack.MessagePackWriter.WriteUInt8(byte value) -> void -MessagePack.Nil -MessagePack.Nil.Equals(MessagePack.Nil other) -> bool -MessagePack.Nil.Nil() -> void -MessagePack.ReservedMessagePackExtensionTypeCode -MessagePack.Resolvers.AttributeFormatterResolver -MessagePack.Resolvers.AttributeFormatterResolver.GetFormatter() -> MessagePack.Formatters.IMessagePackFormatter? -MessagePack.Resolvers.BuiltinResolver -MessagePack.Resolvers.BuiltinResolver.GetFormatter() -> MessagePack.Formatters.IMessagePackFormatter? -MessagePack.Resolvers.CompositeResolver -MessagePack.Resolvers.ContractlessStandardResolver -MessagePack.Resolvers.ContractlessStandardResolver.GetFormatter() -> MessagePack.Formatters.IMessagePackFormatter? -MessagePack.Resolvers.ContractlessStandardResolverAllowPrivate -MessagePack.Resolvers.ContractlessStandardResolverAllowPrivate.GetFormatter() -> MessagePack.Formatters.IMessagePackFormatter? -MessagePack.Resolvers.DynamicContractlessObjectResolver -MessagePack.Resolvers.DynamicContractlessObjectResolver.GetFormatter() -> MessagePack.Formatters.IMessagePackFormatter? -MessagePack.Resolvers.DynamicContractlessObjectResolverAllowPrivate -MessagePack.Resolvers.DynamicContractlessObjectResolverAllowPrivate.DynamicContractlessObjectResolverAllowPrivate() -> void -MessagePack.Resolvers.DynamicContractlessObjectResolverAllowPrivate.GetFormatter() -> MessagePack.Formatters.IMessagePackFormatter? -MessagePack.Resolvers.DynamicEnumAsStringResolver -MessagePack.Resolvers.DynamicEnumAsStringResolver.GetFormatter() -> MessagePack.Formatters.IMessagePackFormatter? -MessagePack.Resolvers.DynamicEnumResolver -MessagePack.Resolvers.DynamicEnumResolver.GetFormatter() -> MessagePack.Formatters.IMessagePackFormatter? -MessagePack.Resolvers.DynamicGenericResolver -MessagePack.Resolvers.DynamicGenericResolver.GetFormatter() -> MessagePack.Formatters.IMessagePackFormatter? -MessagePack.Resolvers.DynamicObjectResolver -MessagePack.Resolvers.DynamicObjectResolver.GetFormatter() -> MessagePack.Formatters.IMessagePackFormatter? -MessagePack.Resolvers.DynamicObjectResolverAllowPrivate -MessagePack.Resolvers.DynamicObjectResolverAllowPrivate.GetFormatter() -> MessagePack.Formatters.IMessagePackFormatter? -MessagePack.Resolvers.DynamicUnionResolver -MessagePack.Resolvers.DynamicUnionResolver.GetFormatter() -> MessagePack.Formatters.IMessagePackFormatter? -MessagePack.Resolvers.NativeDateTimeResolver -MessagePack.Resolvers.NativeDateTimeResolver.GetFormatter() -> MessagePack.Formatters.IMessagePackFormatter? -MessagePack.Resolvers.NativeDecimalResolver -MessagePack.Resolvers.NativeDecimalResolver.GetFormatter() -> MessagePack.Formatters.IMessagePackFormatter? -MessagePack.Resolvers.NativeGuidResolver -MessagePack.Resolvers.NativeGuidResolver.GetFormatter() -> MessagePack.Formatters.IMessagePackFormatter? -MessagePack.Resolvers.PrimitiveObjectResolver -MessagePack.Resolvers.PrimitiveObjectResolver.GetFormatter() -> MessagePack.Formatters.IMessagePackFormatter? -MessagePack.Resolvers.StandardResolver -MessagePack.Resolvers.StandardResolver.GetFormatter() -> MessagePack.Formatters.IMessagePackFormatter? -MessagePack.Resolvers.StandardResolverAllowPrivate -MessagePack.Resolvers.StandardResolverAllowPrivate.GetFormatter() -> MessagePack.Formatters.IMessagePackFormatter? -MessagePack.Resolvers.StaticCompositeResolver -MessagePack.Resolvers.StaticCompositeResolver.GetFormatter() -> MessagePack.Formatters.IMessagePackFormatter? -MessagePack.Resolvers.StaticCompositeResolver.Register(System.Collections.Generic.IReadOnlyList! formatters, System.Collections.Generic.IReadOnlyList! resolvers) -> void -MessagePack.Resolvers.StaticCompositeResolver.Register(params MessagePack.Formatters.IMessagePackFormatter![]! formatters) -> void -MessagePack.Resolvers.StaticCompositeResolver.Register(params MessagePack.IFormatterResolver![]! resolvers) -> void -MessagePack.Resolvers.TypelessContractlessStandardResolver -MessagePack.Resolvers.TypelessContractlessStandardResolver.GetFormatter() -> MessagePack.Formatters.IMessagePackFormatter? -MessagePack.Resolvers.TypelessContractlessStandardResolver.TypelessContractlessStandardResolver() -> void -MessagePack.Resolvers.TypelessObjectResolver -MessagePack.Resolvers.TypelessObjectResolver.GetFormatter() -> MessagePack.Formatters.IMessagePackFormatter? -MessagePack.TinyJsonException -MessagePack.TinyJsonException.TinyJsonException(string! message) -> void -abstract MessagePack.Formatters.CollectionFormatterBase.Add(TIntermediate collection, int index, TElement value, MessagePack.MessagePackSerializerOptions! options) -> void -abstract MessagePack.Formatters.CollectionFormatterBase.Complete(TIntermediate intermediateCollection) -> TCollection -abstract MessagePack.Formatters.CollectionFormatterBase.Create(int count, MessagePack.MessagePackSerializerOptions! options) -> TIntermediate -abstract MessagePack.Formatters.CollectionFormatterBase.GetSourceEnumerator(TCollection source) -> TEnumerator -abstract MessagePack.Formatters.DictionaryFormatterBase.Add(TIntermediate collection, int index, TKey key, TValue value, MessagePack.MessagePackSerializerOptions! options) -> void -abstract MessagePack.Formatters.DictionaryFormatterBase.Complete(TIntermediate intermediateCollection) -> TDictionary! -abstract MessagePack.Formatters.DictionaryFormatterBase.Create(int count, MessagePack.MessagePackSerializerOptions! options) -> TIntermediate -abstract MessagePack.Formatters.DictionaryFormatterBase.GetSourceEnumerator(TDictionary! source) -> TEnumerator -const MessagePack.MessagePackCode.Array16 = 220 -> byte -const MessagePack.MessagePackCode.Array32 = 221 -> byte -const MessagePack.MessagePackCode.Bin16 = 197 -> byte -const MessagePack.MessagePackCode.Bin32 = 198 -> byte -const MessagePack.MessagePackCode.Bin8 = 196 -> byte -const MessagePack.MessagePackCode.Ext16 = 200 -> byte -const MessagePack.MessagePackCode.Ext32 = 201 -> byte -const MessagePack.MessagePackCode.Ext8 = 199 -> byte -const MessagePack.MessagePackCode.False = 194 -> byte -const MessagePack.MessagePackCode.FixExt1 = 212 -> byte -const MessagePack.MessagePackCode.FixExt16 = 216 -> byte -const MessagePack.MessagePackCode.FixExt2 = 213 -> byte -const MessagePack.MessagePackCode.FixExt4 = 214 -> byte -const MessagePack.MessagePackCode.FixExt8 = 215 -> byte -const MessagePack.MessagePackCode.Float32 = 202 -> byte -const MessagePack.MessagePackCode.Float64 = 203 -> byte -const MessagePack.MessagePackCode.Int16 = 209 -> byte -const MessagePack.MessagePackCode.Int32 = 210 -> byte -const MessagePack.MessagePackCode.Int64 = 211 -> byte -const MessagePack.MessagePackCode.Int8 = 208 -> byte -const MessagePack.MessagePackCode.Map16 = 222 -> byte -const MessagePack.MessagePackCode.Map32 = 223 -> byte -const MessagePack.MessagePackCode.MaxFixArray = 159 -> byte -const MessagePack.MessagePackCode.MaxFixInt = 127 -> byte -const MessagePack.MessagePackCode.MaxFixMap = 143 -> byte -const MessagePack.MessagePackCode.MaxFixStr = 191 -> byte -const MessagePack.MessagePackCode.MaxNegativeFixInt = 255 -> byte -const MessagePack.MessagePackCode.MinFixArray = 144 -> byte -const MessagePack.MessagePackCode.MinFixInt = 0 -> byte -const MessagePack.MessagePackCode.MinFixMap = 128 -> byte -const MessagePack.MessagePackCode.MinFixStr = 160 -> byte -const MessagePack.MessagePackCode.MinNegativeFixInt = 224 -> byte -const MessagePack.MessagePackCode.NeverUsed = 193 -> byte -const MessagePack.MessagePackCode.Nil = 192 -> byte -const MessagePack.MessagePackCode.Str16 = 218 -> byte -const MessagePack.MessagePackCode.Str32 = 219 -> byte -const MessagePack.MessagePackCode.Str8 = 217 -> byte -const MessagePack.MessagePackCode.True = 195 -> byte -const MessagePack.MessagePackCode.UInt16 = 205 -> byte -const MessagePack.MessagePackCode.UInt32 = 206 -> byte -const MessagePack.MessagePackCode.UInt64 = 207 -> byte -const MessagePack.MessagePackCode.UInt8 = 204 -> byte -const MessagePack.MessagePackRange.MaxFixArrayCount = 15 -> int -const MessagePack.MessagePackRange.MaxFixMapCount = 15 -> int -const MessagePack.MessagePackRange.MaxFixNegativeInt = -1 -> int -const MessagePack.MessagePackRange.MaxFixPositiveInt = 127 -> int -const MessagePack.MessagePackRange.MaxFixStringLength = 31 -> int -const MessagePack.MessagePackRange.MinFixNegativeInt = -32 -> int -const MessagePack.MessagePackRange.MinFixStringLength = 0 -> int -const MessagePack.ReservedMessagePackExtensionTypeCode.DateTime = -1 -> sbyte -override MessagePack.Formatters.CollectionFormatterBase.GetSourceEnumerator(TCollection source) -> System.Collections.Generic.IEnumerator! -override MessagePack.Formatters.DictionaryFormatterBase.Complete(TDictionary! intermediateCollection) -> TDictionary! -override MessagePack.Formatters.DictionaryFormatterBase.GetSourceEnumerator(TDictionary! source) -> System.Collections.Generic.IEnumerator>! -override MessagePack.Internal.AutomataDictionary.ToString() -> string! -override MessagePack.Nil.Equals(object? obj) -> bool -override MessagePack.Nil.GetHashCode() -> int -override MessagePack.Nil.ToString() -> string! -override sealed MessagePack.Formatters.CollectionFormatterBase.Complete(TCollection intermediateCollection) -> TCollection -static MessagePack.FormatterResolverExtensions.GetFormatterDynamic(this MessagePack.IFormatterResolver! resolver, System.Type! type) -> object? -static MessagePack.FormatterResolverExtensions.GetFormatterWithVerify(this MessagePack.IFormatterResolver! resolver) -> MessagePack.Formatters.IMessagePackFormatter! -static MessagePack.Formatters.PrimitiveObjectFormatter.IsSupportedType(System.Type! type, System.Reflection.TypeInfo! typeInfo, object! value) -> bool -static MessagePack.Internal.AutomataKeyGen.GetKey(ref System.ReadOnlySpan span) -> ulong -static MessagePack.Internal.CodeGenHelpers.GetArrayFromNullableSequence(in System.Buffers.ReadOnlySequence? sequence) -> byte[]? -static MessagePack.Internal.CodeGenHelpers.GetEncodedStringBytes(string! value) -> byte[]! -static MessagePack.Internal.CodeGenHelpers.GetSpanFromSequence(scoped in System.Buffers.ReadOnlySequence sequence) -> System.ReadOnlySpan -static MessagePack.Internal.CodeGenHelpers.ReadStringSpan(scoped ref MessagePack.MessagePackReader reader) -> System.ReadOnlySpan -static MessagePack.Internal.UnsafeMemory32.WriteRaw1(ref MessagePack.MessagePackWriter writer, System.ReadOnlySpan src) -> void -static MessagePack.Internal.UnsafeMemory32.WriteRaw10(ref MessagePack.MessagePackWriter writer, System.ReadOnlySpan src) -> void -static MessagePack.Internal.UnsafeMemory32.WriteRaw11(ref MessagePack.MessagePackWriter writer, System.ReadOnlySpan src) -> void -static MessagePack.Internal.UnsafeMemory32.WriteRaw12(ref MessagePack.MessagePackWriter writer, System.ReadOnlySpan src) -> void -static MessagePack.Internal.UnsafeMemory32.WriteRaw13(ref MessagePack.MessagePackWriter writer, System.ReadOnlySpan src) -> void -static MessagePack.Internal.UnsafeMemory32.WriteRaw14(ref MessagePack.MessagePackWriter writer, System.ReadOnlySpan src) -> void -static MessagePack.Internal.UnsafeMemory32.WriteRaw15(ref MessagePack.MessagePackWriter writer, System.ReadOnlySpan src) -> void -static MessagePack.Internal.UnsafeMemory32.WriteRaw16(ref MessagePack.MessagePackWriter writer, System.ReadOnlySpan src) -> void -static MessagePack.Internal.UnsafeMemory32.WriteRaw17(ref MessagePack.MessagePackWriter writer, System.ReadOnlySpan src) -> void -static MessagePack.Internal.UnsafeMemory32.WriteRaw18(ref MessagePack.MessagePackWriter writer, System.ReadOnlySpan src) -> void -static MessagePack.Internal.UnsafeMemory32.WriteRaw19(ref MessagePack.MessagePackWriter writer, System.ReadOnlySpan src) -> void -static MessagePack.Internal.UnsafeMemory32.WriteRaw2(ref MessagePack.MessagePackWriter writer, System.ReadOnlySpan src) -> void -static MessagePack.Internal.UnsafeMemory32.WriteRaw20(ref MessagePack.MessagePackWriter writer, System.ReadOnlySpan src) -> void -static MessagePack.Internal.UnsafeMemory32.WriteRaw21(ref MessagePack.MessagePackWriter writer, System.ReadOnlySpan src) -> void -static MessagePack.Internal.UnsafeMemory32.WriteRaw22(ref MessagePack.MessagePackWriter writer, System.ReadOnlySpan src) -> void -static MessagePack.Internal.UnsafeMemory32.WriteRaw23(ref MessagePack.MessagePackWriter writer, System.ReadOnlySpan src) -> void -static MessagePack.Internal.UnsafeMemory32.WriteRaw24(ref MessagePack.MessagePackWriter writer, System.ReadOnlySpan src) -> void -static MessagePack.Internal.UnsafeMemory32.WriteRaw25(ref MessagePack.MessagePackWriter writer, System.ReadOnlySpan src) -> void -static MessagePack.Internal.UnsafeMemory32.WriteRaw26(ref MessagePack.MessagePackWriter writer, System.ReadOnlySpan src) -> void -static MessagePack.Internal.UnsafeMemory32.WriteRaw27(ref MessagePack.MessagePackWriter writer, System.ReadOnlySpan src) -> void -static MessagePack.Internal.UnsafeMemory32.WriteRaw28(ref MessagePack.MessagePackWriter writer, System.ReadOnlySpan src) -> void -static MessagePack.Internal.UnsafeMemory32.WriteRaw29(ref MessagePack.MessagePackWriter writer, System.ReadOnlySpan src) -> void -static MessagePack.Internal.UnsafeMemory32.WriteRaw3(ref MessagePack.MessagePackWriter writer, System.ReadOnlySpan src) -> void -static MessagePack.Internal.UnsafeMemory32.WriteRaw30(ref MessagePack.MessagePackWriter writer, System.ReadOnlySpan src) -> void -static MessagePack.Internal.UnsafeMemory32.WriteRaw31(ref MessagePack.MessagePackWriter writer, System.ReadOnlySpan src) -> void -static MessagePack.Internal.UnsafeMemory32.WriteRaw4(ref MessagePack.MessagePackWriter writer, System.ReadOnlySpan src) -> void -static MessagePack.Internal.UnsafeMemory32.WriteRaw5(ref MessagePack.MessagePackWriter writer, System.ReadOnlySpan src) -> void -static MessagePack.Internal.UnsafeMemory32.WriteRaw6(ref MessagePack.MessagePackWriter writer, System.ReadOnlySpan src) -> void -static MessagePack.Internal.UnsafeMemory32.WriteRaw7(ref MessagePack.MessagePackWriter writer, System.ReadOnlySpan src) -> void -static MessagePack.Internal.UnsafeMemory32.WriteRaw8(ref MessagePack.MessagePackWriter writer, System.ReadOnlySpan src) -> void -static MessagePack.Internal.UnsafeMemory32.WriteRaw9(ref MessagePack.MessagePackWriter writer, System.ReadOnlySpan src) -> void -static MessagePack.Internal.UnsafeMemory64.WriteRaw1(ref MessagePack.MessagePackWriter writer, System.ReadOnlySpan src) -> void -static MessagePack.Internal.UnsafeMemory64.WriteRaw10(ref MessagePack.MessagePackWriter writer, System.ReadOnlySpan src) -> void -static MessagePack.Internal.UnsafeMemory64.WriteRaw11(ref MessagePack.MessagePackWriter writer, System.ReadOnlySpan src) -> void -static MessagePack.Internal.UnsafeMemory64.WriteRaw12(ref MessagePack.MessagePackWriter writer, System.ReadOnlySpan src) -> void -static MessagePack.Internal.UnsafeMemory64.WriteRaw13(ref MessagePack.MessagePackWriter writer, System.ReadOnlySpan src) -> void -static MessagePack.Internal.UnsafeMemory64.WriteRaw14(ref MessagePack.MessagePackWriter writer, System.ReadOnlySpan src) -> void -static MessagePack.Internal.UnsafeMemory64.WriteRaw15(ref MessagePack.MessagePackWriter writer, System.ReadOnlySpan src) -> void -static MessagePack.Internal.UnsafeMemory64.WriteRaw16(ref MessagePack.MessagePackWriter writer, System.ReadOnlySpan src) -> void -static MessagePack.Internal.UnsafeMemory64.WriteRaw17(ref MessagePack.MessagePackWriter writer, System.ReadOnlySpan src) -> void -static MessagePack.Internal.UnsafeMemory64.WriteRaw18(ref MessagePack.MessagePackWriter writer, System.ReadOnlySpan src) -> void -static MessagePack.Internal.UnsafeMemory64.WriteRaw19(ref MessagePack.MessagePackWriter writer, System.ReadOnlySpan src) -> void -static MessagePack.Internal.UnsafeMemory64.WriteRaw2(ref MessagePack.MessagePackWriter writer, System.ReadOnlySpan src) -> void -static MessagePack.Internal.UnsafeMemory64.WriteRaw20(ref MessagePack.MessagePackWriter writer, System.ReadOnlySpan src) -> void -static MessagePack.Internal.UnsafeMemory64.WriteRaw21(ref MessagePack.MessagePackWriter writer, System.ReadOnlySpan src) -> void -static MessagePack.Internal.UnsafeMemory64.WriteRaw22(ref MessagePack.MessagePackWriter writer, System.ReadOnlySpan src) -> void -static MessagePack.Internal.UnsafeMemory64.WriteRaw23(ref MessagePack.MessagePackWriter writer, System.ReadOnlySpan src) -> void -static MessagePack.Internal.UnsafeMemory64.WriteRaw24(ref MessagePack.MessagePackWriter writer, System.ReadOnlySpan src) -> void -static MessagePack.Internal.UnsafeMemory64.WriteRaw25(ref MessagePack.MessagePackWriter writer, System.ReadOnlySpan src) -> void -static MessagePack.Internal.UnsafeMemory64.WriteRaw26(ref MessagePack.MessagePackWriter writer, System.ReadOnlySpan src) -> void -static MessagePack.Internal.UnsafeMemory64.WriteRaw27(ref MessagePack.MessagePackWriter writer, System.ReadOnlySpan src) -> void -static MessagePack.Internal.UnsafeMemory64.WriteRaw28(ref MessagePack.MessagePackWriter writer, System.ReadOnlySpan src) -> void -static MessagePack.Internal.UnsafeMemory64.WriteRaw29(ref MessagePack.MessagePackWriter writer, System.ReadOnlySpan src) -> void -static MessagePack.Internal.UnsafeMemory64.WriteRaw3(ref MessagePack.MessagePackWriter writer, System.ReadOnlySpan src) -> void -static MessagePack.Internal.UnsafeMemory64.WriteRaw30(ref MessagePack.MessagePackWriter writer, System.ReadOnlySpan src) -> void -static MessagePack.Internal.UnsafeMemory64.WriteRaw31(ref MessagePack.MessagePackWriter writer, System.ReadOnlySpan src) -> void -static MessagePack.Internal.UnsafeMemory64.WriteRaw4(ref MessagePack.MessagePackWriter writer, System.ReadOnlySpan src) -> void -static MessagePack.Internal.UnsafeMemory64.WriteRaw5(ref MessagePack.MessagePackWriter writer, System.ReadOnlySpan src) -> void -static MessagePack.Internal.UnsafeMemory64.WriteRaw6(ref MessagePack.MessagePackWriter writer, System.ReadOnlySpan src) -> void -static MessagePack.Internal.UnsafeMemory64.WriteRaw7(ref MessagePack.MessagePackWriter writer, System.ReadOnlySpan src) -> void -static MessagePack.Internal.UnsafeMemory64.WriteRaw8(ref MessagePack.MessagePackWriter writer, System.ReadOnlySpan src) -> void -static MessagePack.Internal.UnsafeMemory64.WriteRaw9(ref MessagePack.MessagePackWriter writer, System.ReadOnlySpan src) -> void -static MessagePack.MessagePackCode.ToFormatName(byte code) -> string! -static MessagePack.MessagePackCode.ToMessagePackType(byte code) -> MessagePack.MessagePackType -static MessagePack.MessagePackSerializer.ConvertFromJson(System.IO.TextReader! reader, ref MessagePack.MessagePackWriter writer, MessagePack.MessagePackSerializerOptions? options = null) -> void -static MessagePack.MessagePackSerializer.ConvertFromJson(string! str, MessagePack.MessagePackSerializerOptions? options = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) -> byte[]! -static MessagePack.MessagePackSerializer.ConvertFromJson(string! str, ref MessagePack.MessagePackWriter writer, MessagePack.MessagePackSerializerOptions? options = null) -> void -static MessagePack.MessagePackSerializer.ConvertToJson(System.ReadOnlyMemory bytes, MessagePack.MessagePackSerializerOptions? options = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) -> string! -static MessagePack.MessagePackSerializer.ConvertToJson(in System.Buffers.ReadOnlySequence bytes, MessagePack.MessagePackSerializerOptions? options = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) -> string! -static MessagePack.MessagePackSerializer.ConvertToJson(ref MessagePack.MessagePackReader reader, System.IO.TextWriter! jsonWriter, MessagePack.MessagePackSerializerOptions? options = null) -> void -static MessagePack.MessagePackSerializer.DefaultOptions.get -> MessagePack.MessagePackSerializerOptions! -static MessagePack.MessagePackSerializer.DefaultOptions.set -> void -static MessagePack.MessagePackSerializer.Deserialize(System.Type! type, System.Buffers.ReadOnlySequence bytes, MessagePack.MessagePackSerializerOptions? options = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) -> object? -static MessagePack.MessagePackSerializer.Deserialize(System.Type! type, System.IO.Stream! stream, MessagePack.MessagePackSerializerOptions? options = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) -> object? -static MessagePack.MessagePackSerializer.Deserialize(System.Type! type, System.ReadOnlyMemory bytes, MessagePack.MessagePackSerializerOptions? options = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) -> object? -static MessagePack.MessagePackSerializer.Deserialize(System.Type! type, ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions? options = null) -> object? -static MessagePack.MessagePackSerializer.Deserialize(System.IO.Stream! stream, MessagePack.MessagePackSerializerOptions? options = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) -> T -static MessagePack.MessagePackSerializer.Deserialize(System.ReadOnlyMemory buffer, MessagePack.MessagePackSerializerOptions? options = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) -> T -static MessagePack.MessagePackSerializer.Deserialize(System.ReadOnlyMemory buffer, MessagePack.MessagePackSerializerOptions? options, out int bytesRead, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) -> T -static MessagePack.MessagePackSerializer.Deserialize(System.ReadOnlyMemory buffer, out int bytesRead, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) -> T -static MessagePack.MessagePackSerializer.Deserialize(in System.Buffers.ReadOnlySequence byteSequence, MessagePack.MessagePackSerializerOptions? options = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) -> T -static MessagePack.MessagePackSerializer.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions? options = null) -> T -static MessagePack.MessagePackSerializer.DeserializeAsync(System.Type! type, System.IO.Stream! stream, MessagePack.MessagePackSerializerOptions? options = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) -> System.Threading.Tasks.ValueTask -static MessagePack.MessagePackSerializer.DeserializeAsync(System.IO.Stream! stream, MessagePack.MessagePackSerializerOptions? options = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) -> System.Threading.Tasks.ValueTask -static MessagePack.MessagePackSerializer.Serialize(System.Type! type, System.Buffers.IBufferWriter! writer, object? obj, MessagePack.MessagePackSerializerOptions? options = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) -> void -static MessagePack.MessagePackSerializer.Serialize(System.Type! type, System.IO.Stream! stream, object? obj, MessagePack.MessagePackSerializerOptions? options = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) -> void -static MessagePack.MessagePackSerializer.Serialize(System.Type! type, object? obj, MessagePack.MessagePackSerializerOptions? options = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) -> byte[]! -static MessagePack.MessagePackSerializer.Serialize(System.Type! type, ref MessagePack.MessagePackWriter writer, object? obj, MessagePack.MessagePackSerializerOptions? options = null) -> void -static MessagePack.MessagePackSerializer.Serialize(System.Buffers.IBufferWriter! writer, T value, MessagePack.MessagePackSerializerOptions? options = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) -> void -static MessagePack.MessagePackSerializer.Serialize(System.IO.Stream! stream, T value, MessagePack.MessagePackSerializerOptions? options = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) -> void -static MessagePack.MessagePackSerializer.Serialize(T value, MessagePack.MessagePackSerializerOptions? options = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) -> byte[]! -static MessagePack.MessagePackSerializer.Serialize(ref MessagePack.MessagePackWriter writer, T value, MessagePack.MessagePackSerializerOptions? options = null) -> void -static MessagePack.MessagePackSerializer.SerializeAsync(System.Type! type, System.IO.Stream! stream, object? obj, MessagePack.MessagePackSerializerOptions? options = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) -> System.Threading.Tasks.Task! -static MessagePack.MessagePackSerializer.SerializeAsync(System.IO.Stream! stream, T value, MessagePack.MessagePackSerializerOptions? options = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) -> System.Threading.Tasks.Task! -static MessagePack.MessagePackSerializer.SerializeToJson(System.IO.TextWriter! textWriter, T obj, MessagePack.MessagePackSerializerOptions? options = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) -> void -static MessagePack.MessagePackSerializer.SerializeToJson(T obj, MessagePack.MessagePackSerializerOptions? options = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) -> string! -static MessagePack.MessagePackSerializer.Typeless.DefaultOptions.get -> MessagePack.MessagePackSerializerOptions! -static MessagePack.MessagePackSerializer.Typeless.DefaultOptions.set -> void -static MessagePack.MessagePackSerializer.Typeless.Deserialize(System.IO.Stream! stream, MessagePack.MessagePackSerializerOptions? options = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) -> object? -static MessagePack.MessagePackSerializer.Typeless.Deserialize(System.Memory bytes, MessagePack.MessagePackSerializerOptions? options = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) -> object? -static MessagePack.MessagePackSerializer.Typeless.Deserialize(in System.Buffers.ReadOnlySequence byteSequence, MessagePack.MessagePackSerializerOptions? options = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) -> object? -static MessagePack.MessagePackSerializer.Typeless.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions? options = null) -> object? -static MessagePack.MessagePackSerializer.Typeless.DeserializeAsync(System.IO.Stream! stream, MessagePack.MessagePackSerializerOptions? options = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) -> System.Threading.Tasks.ValueTask -static MessagePack.MessagePackSerializer.Typeless.Serialize(System.Buffers.IBufferWriter! writer, object? obj, MessagePack.MessagePackSerializerOptions? options = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) -> void -static MessagePack.MessagePackSerializer.Typeless.Serialize(System.IO.Stream! stream, object? obj, MessagePack.MessagePackSerializerOptions? options = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) -> void -static MessagePack.MessagePackSerializer.Typeless.Serialize(object? obj, MessagePack.MessagePackSerializerOptions? options = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) -> byte[]! -static MessagePack.MessagePackSerializer.Typeless.Serialize(ref MessagePack.MessagePackWriter writer, object? obj, MessagePack.MessagePackSerializerOptions? options = null) -> void -static MessagePack.MessagePackSerializer.Typeless.SerializeAsync(System.IO.Stream! stream, object? obj, MessagePack.MessagePackSerializerOptions? options = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) -> System.Threading.Tasks.Task! -static MessagePack.MessagePackSerializerOptions.Standard.get -> MessagePack.MessagePackSerializerOptions! -static MessagePack.Resolvers.CompositeResolver.Create(System.Collections.Generic.IReadOnlyList! formatters, System.Collections.Generic.IReadOnlyList! resolvers) -> MessagePack.IFormatterResolver! -static MessagePack.Resolvers.CompositeResolver.Create(params MessagePack.Formatters.IMessagePackFormatter![]! formatters) -> MessagePack.IFormatterResolver! -static MessagePack.Resolvers.CompositeResolver.Create(params MessagePack.IFormatterResolver![]! resolvers) -> MessagePack.IFormatterResolver! -static readonly MessagePack.Formatters.BigIntegerFormatter.Instance -> MessagePack.Formatters.IMessagePackFormatter! -static readonly MessagePack.Formatters.BitArrayFormatter.Instance -> MessagePack.Formatters.IMessagePackFormatter! -static readonly MessagePack.Formatters.BooleanArrayFormatter.Instance -> MessagePack.Formatters.BooleanArrayFormatter! -static readonly MessagePack.Formatters.BooleanFormatter.Instance -> MessagePack.Formatters.BooleanFormatter! -static readonly MessagePack.Formatters.ByteArrayFormatter.Instance -> MessagePack.Formatters.ByteArrayFormatter! -static readonly MessagePack.Formatters.ByteArraySegmentFormatter.Instance -> MessagePack.Formatters.ByteArraySegmentFormatter! -static readonly MessagePack.Formatters.ByteFormatter.Instance -> MessagePack.Formatters.ByteFormatter! -static readonly MessagePack.Formatters.CharArrayFormatter.Instance -> MessagePack.Formatters.CharArrayFormatter! -static readonly MessagePack.Formatters.CharFormatter.Instance -> MessagePack.Formatters.CharFormatter! -static readonly MessagePack.Formatters.ComplexFormatter.Instance -> MessagePack.Formatters.IMessagePackFormatter! -static readonly MessagePack.Formatters.DateTimeArrayFormatter.Instance -> MessagePack.Formatters.DateTimeArrayFormatter! -static readonly MessagePack.Formatters.DateTimeFormatter.Instance -> MessagePack.Formatters.DateTimeFormatter! -static readonly MessagePack.Formatters.DateTimeOffsetFormatter.Instance -> MessagePack.Formatters.IMessagePackFormatter! -static readonly MessagePack.Formatters.DecimalFormatter.Instance -> MessagePack.Formatters.DecimalFormatter! -static readonly MessagePack.Formatters.DoubleArrayFormatter.Instance -> MessagePack.Formatters.DoubleArrayFormatter! -static readonly MessagePack.Formatters.DoubleFormatter.Instance -> MessagePack.Formatters.DoubleFormatter! -static readonly MessagePack.Formatters.DynamicObjectTypeFallbackFormatter.Instance -> MessagePack.Formatters.IMessagePackFormatter! -static readonly MessagePack.Formatters.ForceByteBlockFormatter.Instance -> MessagePack.Formatters.ForceByteBlockFormatter! -static readonly MessagePack.Formatters.ForceInt16BlockArrayFormatter.Instance -> MessagePack.Formatters.ForceInt16BlockArrayFormatter! -static readonly MessagePack.Formatters.ForceInt16BlockFormatter.Instance -> MessagePack.Formatters.ForceInt16BlockFormatter! -static readonly MessagePack.Formatters.ForceInt32BlockArrayFormatter.Instance -> MessagePack.Formatters.ForceInt32BlockArrayFormatter! -static readonly MessagePack.Formatters.ForceInt32BlockFormatter.Instance -> MessagePack.Formatters.ForceInt32BlockFormatter! -static readonly MessagePack.Formatters.ForceInt64BlockArrayFormatter.Instance -> MessagePack.Formatters.ForceInt64BlockArrayFormatter! -static readonly MessagePack.Formatters.ForceInt64BlockFormatter.Instance -> MessagePack.Formatters.ForceInt64BlockFormatter! -static readonly MessagePack.Formatters.ForceSByteBlockArrayFormatter.Instance -> MessagePack.Formatters.ForceSByteBlockArrayFormatter! -static readonly MessagePack.Formatters.ForceSByteBlockFormatter.Instance -> MessagePack.Formatters.ForceSByteBlockFormatter! -static readonly MessagePack.Formatters.ForceUInt16BlockArrayFormatter.Instance -> MessagePack.Formatters.ForceUInt16BlockArrayFormatter! -static readonly MessagePack.Formatters.ForceUInt16BlockFormatter.Instance -> MessagePack.Formatters.ForceUInt16BlockFormatter! -static readonly MessagePack.Formatters.ForceUInt32BlockArrayFormatter.Instance -> MessagePack.Formatters.ForceUInt32BlockArrayFormatter! -static readonly MessagePack.Formatters.ForceUInt32BlockFormatter.Instance -> MessagePack.Formatters.ForceUInt32BlockFormatter! -static readonly MessagePack.Formatters.ForceUInt64BlockArrayFormatter.Instance -> MessagePack.Formatters.ForceUInt64BlockArrayFormatter! -static readonly MessagePack.Formatters.ForceUInt64BlockFormatter.Instance -> MessagePack.Formatters.ForceUInt64BlockFormatter! -static readonly MessagePack.Formatters.GuidFormatter.Instance -> MessagePack.Formatters.IMessagePackFormatter! -static readonly MessagePack.Formatters.Int16ArrayFormatter.Instance -> MessagePack.Formatters.Int16ArrayFormatter! -static readonly MessagePack.Formatters.Int16Formatter.Instance -> MessagePack.Formatters.Int16Formatter! -static readonly MessagePack.Formatters.Int32ArrayFormatter.Instance -> MessagePack.Formatters.Int32ArrayFormatter! -static readonly MessagePack.Formatters.Int32Formatter.Instance -> MessagePack.Formatters.Int32Formatter! -static readonly MessagePack.Formatters.Int64ArrayFormatter.Instance -> MessagePack.Formatters.Int64ArrayFormatter! -static readonly MessagePack.Formatters.Int64Formatter.Instance -> MessagePack.Formatters.Int64Formatter! -static readonly MessagePack.Formatters.NativeDateTimeArrayFormatter.Instance -> MessagePack.Formatters.NativeDateTimeArrayFormatter! -static readonly MessagePack.Formatters.NativeDateTimeFormatter.Instance -> MessagePack.Formatters.NativeDateTimeFormatter! -static readonly MessagePack.Formatters.NativeDecimalFormatter.Instance -> MessagePack.Formatters.IMessagePackFormatter! -static readonly MessagePack.Formatters.NativeGuidFormatter.Instance -> MessagePack.Formatters.IMessagePackFormatter! -static readonly MessagePack.Formatters.NilFormatter.Instance -> MessagePack.Formatters.IMessagePackFormatter! -static readonly MessagePack.Formatters.NonGenericInterfaceDictionaryFormatter.Instance -> MessagePack.Formatters.IMessagePackFormatter! -static readonly MessagePack.Formatters.NonGenericInterfaceListFormatter.Instance -> MessagePack.Formatters.IMessagePackFormatter! -static readonly MessagePack.Formatters.NullableBooleanFormatter.Instance -> MessagePack.Formatters.NullableBooleanFormatter! -static readonly MessagePack.Formatters.NullableByteFormatter.Instance -> MessagePack.Formatters.NullableByteFormatter! -static readonly MessagePack.Formatters.NullableCharFormatter.Instance -> MessagePack.Formatters.NullableCharFormatter! -static readonly MessagePack.Formatters.NullableDateTimeFormatter.Instance -> MessagePack.Formatters.NullableDateTimeFormatter! -static readonly MessagePack.Formatters.NullableDoubleFormatter.Instance -> MessagePack.Formatters.NullableDoubleFormatter! -static readonly MessagePack.Formatters.NullableForceByteBlockFormatter.Instance -> MessagePack.Formatters.NullableForceByteBlockFormatter! -static readonly MessagePack.Formatters.NullableForceInt16BlockFormatter.Instance -> MessagePack.Formatters.NullableForceInt16BlockFormatter! -static readonly MessagePack.Formatters.NullableForceInt32BlockFormatter.Instance -> MessagePack.Formatters.NullableForceInt32BlockFormatter! -static readonly MessagePack.Formatters.NullableForceInt64BlockFormatter.Instance -> MessagePack.Formatters.NullableForceInt64BlockFormatter! -static readonly MessagePack.Formatters.NullableForceSByteBlockFormatter.Instance -> MessagePack.Formatters.NullableForceSByteBlockFormatter! -static readonly MessagePack.Formatters.NullableForceUInt16BlockFormatter.Instance -> MessagePack.Formatters.NullableForceUInt16BlockFormatter! -static readonly MessagePack.Formatters.NullableForceUInt32BlockFormatter.Instance -> MessagePack.Formatters.NullableForceUInt32BlockFormatter! -static readonly MessagePack.Formatters.NullableForceUInt64BlockFormatter.Instance -> MessagePack.Formatters.NullableForceUInt64BlockFormatter! -static readonly MessagePack.Formatters.NullableInt16Formatter.Instance -> MessagePack.Formatters.NullableInt16Formatter! -static readonly MessagePack.Formatters.NullableInt32Formatter.Instance -> MessagePack.Formatters.NullableInt32Formatter! -static readonly MessagePack.Formatters.NullableInt64Formatter.Instance -> MessagePack.Formatters.NullableInt64Formatter! -static readonly MessagePack.Formatters.NullableNilFormatter.Instance -> MessagePack.Formatters.IMessagePackFormatter! -static readonly MessagePack.Formatters.NullableSByteFormatter.Instance -> MessagePack.Formatters.NullableSByteFormatter! -static readonly MessagePack.Formatters.NullableSingleFormatter.Instance -> MessagePack.Formatters.NullableSingleFormatter! -static readonly MessagePack.Formatters.NullableStringArrayFormatter.Instance -> MessagePack.Formatters.NullableStringArrayFormatter! -static readonly MessagePack.Formatters.NullableStringFormatter.Instance -> MessagePack.Formatters.NullableStringFormatter! -static readonly MessagePack.Formatters.NullableUInt16Formatter.Instance -> MessagePack.Formatters.NullableUInt16Formatter! -static readonly MessagePack.Formatters.NullableUInt32Formatter.Instance -> MessagePack.Formatters.NullableUInt32Formatter! -static readonly MessagePack.Formatters.NullableUInt64Formatter.Instance -> MessagePack.Formatters.NullableUInt64Formatter! -static readonly MessagePack.Formatters.PrimitiveObjectFormatter.Instance -> MessagePack.Formatters.IMessagePackFormatter! -static readonly MessagePack.Formatters.SByteArrayFormatter.Instance -> MessagePack.Formatters.SByteArrayFormatter! -static readonly MessagePack.Formatters.SByteFormatter.Instance -> MessagePack.Formatters.SByteFormatter! -static readonly MessagePack.Formatters.SingleArrayFormatter.Instance -> MessagePack.Formatters.SingleArrayFormatter! -static readonly MessagePack.Formatters.SingleFormatter.Instance -> MessagePack.Formatters.SingleFormatter! -static readonly MessagePack.Formatters.StringBuilderFormatter.Instance -> MessagePack.Formatters.IMessagePackFormatter! -static readonly MessagePack.Formatters.TimeSpanFormatter.Instance -> MessagePack.Formatters.IMessagePackFormatter! -static readonly MessagePack.Formatters.TypelessFormatter.Instance -> MessagePack.Formatters.IMessagePackFormatter! -static readonly MessagePack.Formatters.UInt16ArrayFormatter.Instance -> MessagePack.Formatters.UInt16ArrayFormatter! -static readonly MessagePack.Formatters.UInt16Formatter.Instance -> MessagePack.Formatters.UInt16Formatter! -static readonly MessagePack.Formatters.UInt32ArrayFormatter.Instance -> MessagePack.Formatters.UInt32ArrayFormatter! -static readonly MessagePack.Formatters.UInt32Formatter.Instance -> MessagePack.Formatters.UInt32Formatter! -static readonly MessagePack.Formatters.UInt64ArrayFormatter.Instance -> MessagePack.Formatters.UInt64ArrayFormatter! -static readonly MessagePack.Formatters.UInt64Formatter.Instance -> MessagePack.Formatters.UInt64Formatter! -static readonly MessagePack.Formatters.UriFormatter.Instance -> MessagePack.Formatters.IMessagePackFormatter! -static readonly MessagePack.Formatters.VersionFormatter.Instance -> MessagePack.Formatters.IMessagePackFormatter! -static readonly MessagePack.Internal.AutomataKeyGen.GetKeyMethod -> System.Reflection.MethodInfo! -static readonly MessagePack.Internal.RuntimeTypeHandleEqualityComparer.Default -> System.Collections.Generic.IEqualityComparer! -static readonly MessagePack.Internal.UnsafeMemory.Is32Bit -> bool -static readonly MessagePack.Nil.Default -> MessagePack.Nil -static readonly MessagePack.Resolvers.AttributeFormatterResolver.Instance -> MessagePack.Resolvers.AttributeFormatterResolver! -static readonly MessagePack.Resolvers.BuiltinResolver.Instance -> MessagePack.Resolvers.BuiltinResolver! -static readonly MessagePack.Resolvers.ContractlessStandardResolver.Instance -> MessagePack.Resolvers.ContractlessStandardResolver! -static readonly MessagePack.Resolvers.ContractlessStandardResolver.Options -> MessagePack.MessagePackSerializerOptions! -static readonly MessagePack.Resolvers.ContractlessStandardResolverAllowPrivate.Instance -> MessagePack.Resolvers.ContractlessStandardResolverAllowPrivate! -static readonly MessagePack.Resolvers.ContractlessStandardResolverAllowPrivate.Options -> MessagePack.MessagePackSerializerOptions! -static readonly MessagePack.Resolvers.DynamicContractlessObjectResolver.Instance -> MessagePack.Resolvers.DynamicContractlessObjectResolver! -static readonly MessagePack.Resolvers.DynamicContractlessObjectResolverAllowPrivate.Instance -> MessagePack.Resolvers.DynamicContractlessObjectResolverAllowPrivate! -static readonly MessagePack.Resolvers.DynamicEnumAsStringResolver.Instance -> MessagePack.Resolvers.DynamicEnumAsStringResolver! -static readonly MessagePack.Resolvers.DynamicEnumAsStringResolver.Options -> MessagePack.MessagePackSerializerOptions! -static readonly MessagePack.Resolvers.DynamicEnumResolver.Instance -> MessagePack.Resolvers.DynamicEnumResolver! -static readonly MessagePack.Resolvers.DynamicGenericResolver.Instance -> MessagePack.Resolvers.DynamicGenericResolver! -static readonly MessagePack.Resolvers.DynamicObjectResolver.Instance -> MessagePack.Resolvers.DynamicObjectResolver! -static readonly MessagePack.Resolvers.DynamicObjectResolver.Options -> MessagePack.MessagePackSerializerOptions! -static readonly MessagePack.Resolvers.DynamicObjectResolverAllowPrivate.Instance -> MessagePack.Resolvers.DynamicObjectResolverAllowPrivate! -static readonly MessagePack.Resolvers.DynamicUnionResolver.Instance -> MessagePack.Resolvers.DynamicUnionResolver! -static readonly MessagePack.Resolvers.DynamicUnionResolver.Options -> MessagePack.MessagePackSerializerOptions! -static readonly MessagePack.Resolvers.NativeDateTimeResolver.Instance -> MessagePack.Resolvers.NativeDateTimeResolver! -static readonly MessagePack.Resolvers.NativeDateTimeResolver.Options -> MessagePack.MessagePackSerializerOptions! -static readonly MessagePack.Resolvers.NativeDecimalResolver.Instance -> MessagePack.Resolvers.NativeDecimalResolver! -static readonly MessagePack.Resolvers.NativeGuidResolver.Instance -> MessagePack.Resolvers.NativeGuidResolver! -static readonly MessagePack.Resolvers.PrimitiveObjectResolver.Instance -> MessagePack.Resolvers.PrimitiveObjectResolver! -static readonly MessagePack.Resolvers.PrimitiveObjectResolver.Options -> MessagePack.MessagePackSerializerOptions! -static readonly MessagePack.Resolvers.StandardResolver.Instance -> MessagePack.Resolvers.StandardResolver! -static readonly MessagePack.Resolvers.StandardResolver.Options -> MessagePack.MessagePackSerializerOptions! -static readonly MessagePack.Resolvers.StandardResolverAllowPrivate.Instance -> MessagePack.Resolvers.StandardResolverAllowPrivate! -static readonly MessagePack.Resolvers.StandardResolverAllowPrivate.Options -> MessagePack.MessagePackSerializerOptions! -static readonly MessagePack.Resolvers.StaticCompositeResolver.Instance -> MessagePack.Resolvers.StaticCompositeResolver! -static readonly MessagePack.Resolvers.TypelessContractlessStandardResolver.Instance -> MessagePack.Resolvers.TypelessContractlessStandardResolver! -static readonly MessagePack.Resolvers.TypelessContractlessStandardResolver.Options -> MessagePack.MessagePackSerializerOptions! -static readonly MessagePack.Resolvers.TypelessObjectResolver.Instance -> MessagePack.IFormatterResolver! -virtual MessagePack.Formatters.CollectionFormatterBase.GetCount(TCollection sequence) -> int? -virtual MessagePack.MessagePackSerializerOptions.Clone() -> MessagePack.MessagePackSerializerOptions! -virtual MessagePack.MessagePackSerializerOptions.LoadType(string! typeName) -> System.Type? -virtual MessagePack.MessagePackSerializerOptions.ThrowIfDeserializingTypeIsDisallowed(System.Type! type) -> void -MessagePack.ExtensionHeader.Equals(MessagePack.ExtensionHeader other) -> bool -MessagePack.Formatters.InterfaceCollectionFormatter2 -MessagePack.Formatters.InterfaceCollectionFormatter2.InterfaceCollectionFormatter2() -> void -MessagePack.Formatters.InterfaceListFormatter2 -MessagePack.Formatters.InterfaceListFormatter2.InterfaceListFormatter2() -> void -MessagePack.MessagePackReader.Depth.get -> int -MessagePack.MessagePackReader.Depth.set -> void -MessagePack.MessagePackReader.ReadDateTime(MessagePack.ExtensionHeader header) -> System.DateTime -MessagePack.MessagePackReader.TryReadArrayHeader(out int count) -> bool -MessagePack.MessagePackReader.TryReadExtensionFormatHeader(out MessagePack.ExtensionHeader extensionHeader) -> bool -MessagePack.MessagePackReader.TryReadMapHeader(out int count) -> bool -MessagePack.MessagePackSecurity -MessagePack.MessagePackSecurity.DepthStep(ref MessagePack.MessagePackReader reader) -> void -MessagePack.MessagePackSecurity.GetEqualityComparer() -> System.Collections.IEqualityComparer! -MessagePack.MessagePackSecurity.GetEqualityComparer() -> System.Collections.Generic.IEqualityComparer! -MessagePack.MessagePackSecurity.HashCollisionResistant.get -> bool -MessagePack.MessagePackSecurity.MaximumObjectGraphDepth.get -> int -MessagePack.MessagePackSecurity.MessagePackSecurity(MessagePack.MessagePackSecurity! copyFrom) -> void -MessagePack.MessagePackSecurity.WithHashCollisionResistant(bool hashCollisionResistant) -> MessagePack.MessagePackSecurity! -MessagePack.MessagePackSecurity.WithMaximumObjectGraphDepth(int maximumObjectGraphDepth) -> MessagePack.MessagePackSecurity! -MessagePack.MessagePackSerializerOptions.Security.get -> MessagePack.MessagePackSecurity! -MessagePack.MessagePackSerializerOptions.WithSecurity(MessagePack.MessagePackSecurity! security) -> MessagePack.MessagePackSerializerOptions! -MessagePack.MessagePackStreamReader.DiscardBufferedData() -> void -MessagePack.MessagePackStreamReader.MessagePackStreamReader(System.IO.Stream! stream, bool leaveOpen) -> void -MessagePack.MessagePackStreamReader.ReadArrayAsync(System.Threading.CancellationToken cancellationToken) -> System.Collections.Generic.IAsyncEnumerable>! -MessagePack.MessagePackWriter.WriteBinHeader(int length) -> void -MessagePack.MessagePackWriter.WriteStringHeader(int byteCount) -> void -static readonly MessagePack.MessagePackSecurity.TrustedData -> MessagePack.MessagePackSecurity! -static readonly MessagePack.MessagePackSecurity.UntrustedData -> MessagePack.MessagePackSecurity! -virtual MessagePack.MessagePackSecurity.Clone() -> MessagePack.MessagePackSecurity! -virtual MessagePack.MessagePackSecurity.GetHashCollisionResistantEqualityComparer() -> System.Collections.IEqualityComparer! -virtual MessagePack.MessagePackSecurity.GetHashCollisionResistantEqualityComparer() -> System.Collections.Generic.IEqualityComparer! -MessagePack.Formatters.ByteMemoryFormatter -MessagePack.Formatters.ByteMemoryFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> System.Memory -MessagePack.Formatters.ByteMemoryFormatter.Serialize(ref MessagePack.MessagePackWriter writer, System.Memory value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.ByteReadOnlyMemoryFormatter -MessagePack.Formatters.ByteReadOnlyMemoryFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> System.ReadOnlyMemory -MessagePack.Formatters.ByteReadOnlyMemoryFormatter.Serialize(ref MessagePack.MessagePackWriter writer, System.ReadOnlyMemory value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.ByteReadOnlySequenceFormatter -MessagePack.Formatters.ByteReadOnlySequenceFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> System.Buffers.ReadOnlySequence -MessagePack.Formatters.ByteReadOnlySequenceFormatter.Serialize(ref MessagePack.MessagePackWriter writer, System.Buffers.ReadOnlySequence value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.ExpandoObjectFormatter -MessagePack.Formatters.ExpandoObjectFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> System.Dynamic.ExpandoObject? -MessagePack.Formatters.ExpandoObjectFormatter.Serialize(ref MessagePack.MessagePackWriter writer, System.Dynamic.ExpandoObject? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.ForceTypelessFormatter -MessagePack.Formatters.ForceTypelessFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> T? -MessagePack.Formatters.ForceTypelessFormatter.ForceTypelessFormatter() -> void -MessagePack.Formatters.ForceTypelessFormatter.Serialize(ref MessagePack.MessagePackWriter writer, T? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.MemoryFormatter -MessagePack.Formatters.MemoryFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> System.Memory -MessagePack.Formatters.MemoryFormatter.MemoryFormatter() -> void -MessagePack.Formatters.MemoryFormatter.Serialize(ref MessagePack.MessagePackWriter writer, System.Memory value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.NonGenericInterfaceCollectionFormatter -MessagePack.Formatters.NonGenericInterfaceCollectionFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> System.Collections.ICollection? -MessagePack.Formatters.NonGenericInterfaceCollectionFormatter.Serialize(ref MessagePack.MessagePackWriter writer, System.Collections.ICollection? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.NonGenericInterfaceEnumerableFormatter -MessagePack.Formatters.NonGenericInterfaceEnumerableFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> System.Collections.IEnumerable? -MessagePack.Formatters.NonGenericInterfaceEnumerableFormatter.Serialize(ref MessagePack.MessagePackWriter writer, System.Collections.IEnumerable? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.PrimitiveObjectFormatter.PrimitiveObjectFormatter() -> void -MessagePack.Formatters.ReadOnlyMemoryFormatter -MessagePack.Formatters.ReadOnlyMemoryFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> System.ReadOnlyMemory -MessagePack.Formatters.ReadOnlyMemoryFormatter.ReadOnlyMemoryFormatter() -> void -MessagePack.Formatters.ReadOnlyMemoryFormatter.Serialize(ref MessagePack.MessagePackWriter writer, System.ReadOnlyMemory value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.ReadOnlySequenceFormatter -MessagePack.Formatters.ReadOnlySequenceFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> System.Buffers.ReadOnlySequence -MessagePack.Formatters.ReadOnlySequenceFormatter.ReadOnlySequenceFormatter() -> void -MessagePack.Formatters.ReadOnlySequenceFormatter.Serialize(ref MessagePack.MessagePackWriter writer, System.Buffers.ReadOnlySequence value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.TypeFormatter -MessagePack.Formatters.TypeFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> T? -MessagePack.Formatters.TypeFormatter.Serialize(ref MessagePack.MessagePackWriter writer, T? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.TypelessFormatter.TypelessFormatter() -> void -MessagePack.ImmutableCollection.ImmutableArrayFormatter -~MessagePack.ImmutableCollection.ImmutableArrayFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions options) -> System.Collections.Immutable.ImmutableArray -MessagePack.ImmutableCollection.ImmutableArrayFormatter.ImmutableArrayFormatter() -> void -~MessagePack.ImmutableCollection.ImmutableArrayFormatter.Serialize(ref MessagePack.MessagePackWriter writer, System.Collections.Immutable.ImmutableArray value, MessagePack.MessagePackSerializerOptions options) -> void -MessagePack.ImmutableCollection.ImmutableCollectionResolver -MessagePack.ImmutableCollection.ImmutableCollectionResolver.GetFormatter() -> MessagePack.Formatters.IMessagePackFormatter? -MessagePack.ImmutableCollection.ImmutableDictionaryFormatter -MessagePack.ImmutableCollection.ImmutableDictionaryFormatter.ImmutableDictionaryFormatter() -> void -MessagePack.ImmutableCollection.ImmutableHashSetFormatter -MessagePack.ImmutableCollection.ImmutableHashSetFormatter.ImmutableHashSetFormatter() -> void -MessagePack.ImmutableCollection.ImmutableListFormatter -MessagePack.ImmutableCollection.ImmutableListFormatter.ImmutableListFormatter() -> void -MessagePack.ImmutableCollection.ImmutableQueueBuilder -MessagePack.ImmutableCollection.ImmutableQueueBuilder.Add(T value) -> void -MessagePack.ImmutableCollection.ImmutableQueueBuilder.ImmutableQueueBuilder() -> void -~MessagePack.ImmutableCollection.ImmutableQueueBuilder.Q.get -> System.Collections.Immutable.ImmutableQueue -~MessagePack.ImmutableCollection.ImmutableQueueBuilder.Q.set -> void -MessagePack.ImmutableCollection.ImmutableQueueFormatter -MessagePack.ImmutableCollection.ImmutableQueueFormatter.ImmutableQueueFormatter() -> void -MessagePack.ImmutableCollection.ImmutableSortedDictionaryFormatter -MessagePack.ImmutableCollection.ImmutableSortedDictionaryFormatter.ImmutableSortedDictionaryFormatter() -> void -MessagePack.ImmutableCollection.ImmutableSortedSetFormatter -MessagePack.ImmutableCollection.ImmutableSortedSetFormatter.ImmutableSortedSetFormatter() -> void -MessagePack.ImmutableCollection.ImmutableStackFormatter -MessagePack.ImmutableCollection.ImmutableStackFormatter.ImmutableStackFormatter() -> void -MessagePack.ImmutableCollection.InterfaceImmutableDictionaryFormatter -MessagePack.ImmutableCollection.InterfaceImmutableDictionaryFormatter.InterfaceImmutableDictionaryFormatter() -> void -MessagePack.ImmutableCollection.InterfaceImmutableListFormatter -MessagePack.ImmutableCollection.InterfaceImmutableListFormatter.InterfaceImmutableListFormatter() -> void -MessagePack.ImmutableCollection.InterfaceImmutableQueueFormatter -MessagePack.ImmutableCollection.InterfaceImmutableQueueFormatter.InterfaceImmutableQueueFormatter() -> void -MessagePack.ImmutableCollection.InterfaceImmutableSetFormatter -MessagePack.ImmutableCollection.InterfaceImmutableSetFormatter.InterfaceImmutableSetFormatter() -> void -MessagePack.ImmutableCollection.InterfaceImmutableStackFormatter -MessagePack.ImmutableCollection.InterfaceImmutableStackFormatter.InterfaceImmutableStackFormatter() -> void -MessagePack.Resolvers.ExpandoObjectResolver -~override MessagePack.ImmutableCollection.ImmutableDictionaryFormatter.Add(System.Collections.Immutable.ImmutableDictionary.Builder collection, int index, TKey key, TValue value, MessagePack.MessagePackSerializerOptions options) -> void -~override MessagePack.ImmutableCollection.ImmutableDictionaryFormatter.Complete(System.Collections.Immutable.ImmutableDictionary.Builder intermediateCollection) -> System.Collections.Immutable.ImmutableDictionary -~override MessagePack.ImmutableCollection.ImmutableDictionaryFormatter.Create(int count, MessagePack.MessagePackSerializerOptions options) -> System.Collections.Immutable.ImmutableDictionary.Builder -~override MessagePack.ImmutableCollection.ImmutableDictionaryFormatter.GetSourceEnumerator(System.Collections.Immutable.ImmutableDictionary source) -> System.Collections.Immutable.ImmutableDictionary.Enumerator -~override MessagePack.ImmutableCollection.ImmutableHashSetFormatter.Add(System.Collections.Immutable.ImmutableHashSet.Builder collection, int index, T value, MessagePack.MessagePackSerializerOptions options) -> void -~override MessagePack.ImmutableCollection.ImmutableHashSetFormatter.Complete(System.Collections.Immutable.ImmutableHashSet.Builder intermediateCollection) -> System.Collections.Immutable.ImmutableHashSet -~override MessagePack.ImmutableCollection.ImmutableHashSetFormatter.Create(int count, MessagePack.MessagePackSerializerOptions options) -> System.Collections.Immutable.ImmutableHashSet.Builder -~override MessagePack.ImmutableCollection.ImmutableHashSetFormatter.GetSourceEnumerator(System.Collections.Immutable.ImmutableHashSet source) -> System.Collections.Immutable.ImmutableHashSet.Enumerator -~override MessagePack.ImmutableCollection.ImmutableListFormatter.Add(System.Collections.Immutable.ImmutableList.Builder collection, int index, T value, MessagePack.MessagePackSerializerOptions options) -> void -~override MessagePack.ImmutableCollection.ImmutableListFormatter.Complete(System.Collections.Immutable.ImmutableList.Builder intermediateCollection) -> System.Collections.Immutable.ImmutableList -~override MessagePack.ImmutableCollection.ImmutableListFormatter.Create(int count, MessagePack.MessagePackSerializerOptions options) -> System.Collections.Immutable.ImmutableList.Builder -~override MessagePack.ImmutableCollection.ImmutableListFormatter.GetSourceEnumerator(System.Collections.Immutable.ImmutableList source) -> System.Collections.Immutable.ImmutableList.Enumerator -~override MessagePack.ImmutableCollection.ImmutableQueueFormatter.Add(MessagePack.ImmutableCollection.ImmutableQueueBuilder collection, int index, T value, MessagePack.MessagePackSerializerOptions options) -> void -~override MessagePack.ImmutableCollection.ImmutableQueueFormatter.Complete(MessagePack.ImmutableCollection.ImmutableQueueBuilder intermediateCollection) -> System.Collections.Immutable.ImmutableQueue -~override MessagePack.ImmutableCollection.ImmutableQueueFormatter.Create(int count, MessagePack.MessagePackSerializerOptions options) -> MessagePack.ImmutableCollection.ImmutableQueueBuilder -~override MessagePack.ImmutableCollection.ImmutableSortedDictionaryFormatter.Add(System.Collections.Immutable.ImmutableSortedDictionary.Builder collection, int index, TKey key, TValue value, MessagePack.MessagePackSerializerOptions options) -> void -~override MessagePack.ImmutableCollection.ImmutableSortedDictionaryFormatter.Complete(System.Collections.Immutable.ImmutableSortedDictionary.Builder intermediateCollection) -> System.Collections.Immutable.ImmutableSortedDictionary -~override MessagePack.ImmutableCollection.ImmutableSortedDictionaryFormatter.Create(int count, MessagePack.MessagePackSerializerOptions options) -> System.Collections.Immutable.ImmutableSortedDictionary.Builder -~override MessagePack.ImmutableCollection.ImmutableSortedDictionaryFormatter.GetSourceEnumerator(System.Collections.Immutable.ImmutableSortedDictionary source) -> System.Collections.Immutable.ImmutableSortedDictionary.Enumerator -~override MessagePack.ImmutableCollection.ImmutableSortedSetFormatter.Add(System.Collections.Immutable.ImmutableSortedSet.Builder collection, int index, T value, MessagePack.MessagePackSerializerOptions options) -> void -~override MessagePack.ImmutableCollection.ImmutableSortedSetFormatter.Complete(System.Collections.Immutable.ImmutableSortedSet.Builder intermediateCollection) -> System.Collections.Immutable.ImmutableSortedSet -~override MessagePack.ImmutableCollection.ImmutableSortedSetFormatter.Create(int count, MessagePack.MessagePackSerializerOptions options) -> System.Collections.Immutable.ImmutableSortedSet.Builder -~override MessagePack.ImmutableCollection.ImmutableSortedSetFormatter.GetSourceEnumerator(System.Collections.Immutable.ImmutableSortedSet source) -> System.Collections.Immutable.ImmutableSortedSet.Enumerator -~override MessagePack.ImmutableCollection.ImmutableStackFormatter.Add(T[] collection, int index, T value, MessagePack.MessagePackSerializerOptions options) -> void -~override MessagePack.ImmutableCollection.ImmutableStackFormatter.Complete(T[] intermediateCollection) -> System.Collections.Immutable.ImmutableStack -~override MessagePack.ImmutableCollection.ImmutableStackFormatter.Create(int count, MessagePack.MessagePackSerializerOptions options) -> T[] -~override MessagePack.ImmutableCollection.InterfaceImmutableDictionaryFormatter.Add(System.Collections.Immutable.ImmutableDictionary.Builder collection, int index, TKey key, TValue value, MessagePack.MessagePackSerializerOptions options) -> void -~override MessagePack.ImmutableCollection.InterfaceImmutableDictionaryFormatter.Complete(System.Collections.Immutable.ImmutableDictionary.Builder intermediateCollection) -> System.Collections.Immutable.IImmutableDictionary -~override MessagePack.ImmutableCollection.InterfaceImmutableDictionaryFormatter.Create(int count, MessagePack.MessagePackSerializerOptions options) -> System.Collections.Immutable.ImmutableDictionary.Builder -~override MessagePack.ImmutableCollection.InterfaceImmutableListFormatter.Add(System.Collections.Immutable.ImmutableList.Builder collection, int index, T value, MessagePack.MessagePackSerializerOptions options) -> void -~override MessagePack.ImmutableCollection.InterfaceImmutableListFormatter.Complete(System.Collections.Immutable.ImmutableList.Builder intermediateCollection) -> System.Collections.Immutable.IImmutableList -~override MessagePack.ImmutableCollection.InterfaceImmutableListFormatter.Create(int count, MessagePack.MessagePackSerializerOptions options) -> System.Collections.Immutable.ImmutableList.Builder -~override MessagePack.ImmutableCollection.InterfaceImmutableQueueFormatter.Add(MessagePack.ImmutableCollection.ImmutableQueueBuilder collection, int index, T value, MessagePack.MessagePackSerializerOptions options) -> void -~override MessagePack.ImmutableCollection.InterfaceImmutableQueueFormatter.Complete(MessagePack.ImmutableCollection.ImmutableQueueBuilder intermediateCollection) -> System.Collections.Immutable.IImmutableQueue -~override MessagePack.ImmutableCollection.InterfaceImmutableQueueFormatter.Create(int count, MessagePack.MessagePackSerializerOptions options) -> MessagePack.ImmutableCollection.ImmutableQueueBuilder -~override MessagePack.ImmutableCollection.InterfaceImmutableSetFormatter.Add(System.Collections.Immutable.ImmutableHashSet.Builder collection, int index, T value, MessagePack.MessagePackSerializerOptions options) -> void -~override MessagePack.ImmutableCollection.InterfaceImmutableSetFormatter.Complete(System.Collections.Immutable.ImmutableHashSet.Builder intermediateCollection) -> System.Collections.Immutable.IImmutableSet -~override MessagePack.ImmutableCollection.InterfaceImmutableSetFormatter.Create(int count, MessagePack.MessagePackSerializerOptions options) -> System.Collections.Immutable.ImmutableHashSet.Builder -~override MessagePack.ImmutableCollection.InterfaceImmutableStackFormatter.Add(T[] collection, int index, T value, MessagePack.MessagePackSerializerOptions options) -> void -~override MessagePack.ImmutableCollection.InterfaceImmutableStackFormatter.Complete(T[] intermediateCollection) -> System.Collections.Immutable.IImmutableStack -~override MessagePack.ImmutableCollection.InterfaceImmutableStackFormatter.Create(int count, MessagePack.MessagePackSerializerOptions options) -> T[] -static readonly MessagePack.Formatters.ByteMemoryFormatter.Instance -> MessagePack.Formatters.ByteMemoryFormatter! -static readonly MessagePack.Formatters.ByteReadOnlyMemoryFormatter.Instance -> MessagePack.Formatters.ByteReadOnlyMemoryFormatter! -static readonly MessagePack.Formatters.ByteReadOnlySequenceFormatter.Instance -> MessagePack.Formatters.ByteReadOnlySequenceFormatter! -static readonly MessagePack.Formatters.ExpandoObjectFormatter.Instance -> MessagePack.Formatters.IMessagePackFormatter! -static readonly MessagePack.Formatters.NonGenericInterfaceCollectionFormatter.Instance -> MessagePack.Formatters.IMessagePackFormatter! -static readonly MessagePack.Formatters.NonGenericInterfaceEnumerableFormatter.Instance -> MessagePack.Formatters.IMessagePackFormatter! -static readonly MessagePack.Formatters.TypeFormatter.Instance -> MessagePack.Formatters.IMessagePackFormatter! -static readonly MessagePack.ImmutableCollection.ImmutableCollectionResolver.Instance -> MessagePack.ImmutableCollection.ImmutableCollectionResolver! -static readonly MessagePack.Resolvers.ExpandoObjectResolver.Instance -> MessagePack.IFormatterResolver! -static readonly MessagePack.Resolvers.ExpandoObjectResolver.Options -> MessagePack.MessagePackSerializerOptions! -virtual MessagePack.Formatters.PrimitiveObjectFormatter.DeserializeMap(ref MessagePack.MessagePackReader reader, int length, MessagePack.MessagePackSerializerOptions! options) -> object! -MessagePack.ExtensionHeader.ExtensionHeader() -> void -MessagePack.ExtensionResult.ExtensionResult() -> void -MessagePack.FormatterNotRegisteredException.FormatterNotRegisteredException(System.Runtime.Serialization.SerializationInfo! info, System.Runtime.Serialization.StreamingContext context) -> void -MessagePack.MessagePackReader.MessagePackReader() -> void -MessagePack.MessagePackSerializerOptions.SequencePool.get -> MessagePack.SequencePool! -MessagePack.MessagePackSerializerOptions.WithPool(MessagePack.SequencePool! pool) -> MessagePack.MessagePackSerializerOptions! -MessagePack.MessagePackStreamReader.MessagePackStreamReader(System.IO.Stream! stream, bool leaveOpen, MessagePack.SequencePool! sequencePool) -> void -MessagePack.MessagePackStreamReader.ReadArrayHeaderAsync(System.Threading.CancellationToken cancellationToken) -> System.Threading.Tasks.ValueTask -MessagePack.MessagePackStreamReader.ReadMapHeaderAsync(System.Threading.CancellationToken cancellationToken) -> System.Threading.Tasks.ValueTask -MessagePack.MessagePackWriter.MessagePackWriter() -> void -MessagePack.SequencePool -MessagePack.SequencePool.SequencePool() -> void -MessagePack.SequencePool.SequencePool(int maxSize) -> void -MessagePack.SequencePool.SequencePool(int maxSize, System.Buffers.ArrayPool! arrayPool) -> void -MessagePack.SequencePool.SequencePool(int maxSize, System.Buffers.MemoryPool! memoryPool) -> void -MessagePack.TinyJsonException.TinyJsonException(System.Runtime.Serialization.SerializationInfo! info, System.Runtime.Serialization.StreamingContext context) -> void -static MessagePack.Nil.operator !=(MessagePack.Nil left, MessagePack.Nil right) -> bool -static MessagePack.Nil.operator ==(MessagePack.Nil left, MessagePack.Nil right) -> bool -virtual MessagePack.MessagePackStreamReader.Dispose(bool disposing) -> void -MessagePack.Formatters.GenericEnumerableFormatter -MessagePack.Formatters.GenericEnumerableFormatter.GenericEnumerableFormatter() -> void -MessagePack.Formatters.GenericReadOnlyDictionaryFormatter -MessagePack.Formatters.GenericReadOnlyDictionaryFormatter.GenericReadOnlyDictionaryFormatter() -> void -MessagePack.Formatters.StringInterningFormatter -MessagePack.Formatters.StringInterningFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> string? -MessagePack.Formatters.StringInterningFormatter.Serialize(ref MessagePack.MessagePackWriter writer, string? value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.StringInterningFormatter.StringInterningFormatter() -> void -MessagePack.MessagePackSerializerOptions.CompressionMinLength.get -> int -MessagePack.MessagePackSerializerOptions.SuggestedContiguousMemorySize.get -> int -MessagePack.MessagePackSerializerOptions.WithCompressionMinLength(int compressionMinLength) -> MessagePack.MessagePackSerializerOptions! -MessagePack.MessagePackSerializerOptions.WithSuggestedContiguousMemorySize(int suggestedContiguousMemorySize) -> MessagePack.MessagePackSerializerOptions! -static MessagePack.MessagePackWriter.GetEncodedLength(long value) -> int -static MessagePack.MessagePackWriter.GetEncodedLength(ulong value) -> int -const MessagePack.ReservedExtensionTypeCodes.Lz4Block = 99 -> sbyte -const MessagePack.ReservedExtensionTypeCodes.Lz4BlockArray = 98 -> sbyte -const MessagePack.ReservedExtensionTypeCodes.TypelessFormatter = 100 -> sbyte -const MessagePack.ReservedExtensionTypeCodes.UnityBounds = 35 -> sbyte -const MessagePack.ReservedExtensionTypeCodes.UnityColor = 34 -> sbyte -const MessagePack.ReservedExtensionTypeCodes.UnityDouble = 39 -> sbyte -const MessagePack.ReservedExtensionTypeCodes.UnityFloat = 38 -> sbyte -const MessagePack.ReservedExtensionTypeCodes.UnityInt = 37 -> sbyte -const MessagePack.ReservedExtensionTypeCodes.UnityQuaternion = 33 -> sbyte -const MessagePack.ReservedExtensionTypeCodes.UnityRect = 36 -> sbyte -const MessagePack.ReservedExtensionTypeCodes.UnityVector2 = 30 -> sbyte -const MessagePack.ReservedExtensionTypeCodes.UnityVector3 = 31 -> sbyte -const MessagePack.ReservedExtensionTypeCodes.UnityVector4 = 32 -> sbyte -MessagePack.CompositeResolverAttribute -MessagePack.CompositeResolverAttribute.CompositeResolverAttribute(params System.Type![]! formattersAndResolvers) -> void -MessagePack.CompositeResolverAttribute.IncludeLocalFormatters.get -> bool -MessagePack.CompositeResolverAttribute.IncludeLocalFormatters.set -> void -MessagePack.Formatters.EnumAsStringFormatter.EnumAsStringFormatter(bool ignoreCase) -> void -MessagePack.Formatters.Matrix3x2Formatter -MessagePack.Formatters.Matrix3x2Formatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> System.Numerics.Matrix3x2 -MessagePack.Formatters.Matrix3x2Formatter.Serialize(ref MessagePack.MessagePackWriter writer, System.Numerics.Matrix3x2 value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.Matrix4x4Formatter -MessagePack.Formatters.Matrix4x4Formatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> System.Numerics.Matrix4x4 -MessagePack.Formatters.Matrix4x4Formatter.Serialize(ref MessagePack.MessagePackWriter writer, System.Numerics.Matrix4x4 value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.QuaternionFormatter -MessagePack.Formatters.QuaternionFormatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> System.Numerics.Quaternion -MessagePack.Formatters.QuaternionFormatter.Serialize(ref MessagePack.MessagePackWriter writer, System.Numerics.Quaternion value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.Vector2Formatter -MessagePack.Formatters.Vector2Formatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> System.Numerics.Vector2 -MessagePack.Formatters.Vector2Formatter.Serialize(ref MessagePack.MessagePackWriter writer, System.Numerics.Vector2 value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.Vector3Formatter -MessagePack.Formatters.Vector3Formatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> System.Numerics.Vector3 -MessagePack.Formatters.Vector3Formatter.Serialize(ref MessagePack.MessagePackWriter writer, System.Numerics.Vector3 value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.Formatters.Vector4Formatter -MessagePack.Formatters.Vector4Formatter.Deserialize(ref MessagePack.MessagePackReader reader, MessagePack.MessagePackSerializerOptions! options) -> System.Numerics.Vector4 -MessagePack.Formatters.Vector4Formatter.Serialize(ref MessagePack.MessagePackWriter writer, System.Numerics.Vector4 value, MessagePack.MessagePackSerializerOptions! options) -> void -MessagePack.GeneratedMessagePackResolverAttribute -MessagePack.GeneratedMessagePackResolverAttribute.GeneratedMessagePackResolverAttribute() -> void -MessagePack.GeneratedMessagePackResolverAttribute.UseMapMode.get -> bool -MessagePack.GeneratedMessagePackResolverAttribute.UseMapMode.set -> void -MessagePack.Internal.GeneratedAssemblyMessagePackResolverAttribute -MessagePack.Internal.GeneratedAssemblyMessagePackResolverAttribute.GeneratedAssemblyMessagePackResolverAttribute(System.Type! resolverType, int majorVersion, int minorVersion) -> void -MessagePack.Internal.GeneratedAssemblyMessagePackResolverAttribute.MajorVersion.get -> int -MessagePack.Internal.GeneratedAssemblyMessagePackResolverAttribute.MinorVersion.get -> int -MessagePack.Internal.GeneratedAssemblyMessagePackResolverAttribute.ResolverType.get -> System.Type! -MessagePack.MessagePackPrimitives -MessagePack.MessagePackPrimitives.DecodeResult -MessagePack.MessagePackPrimitives.DecodeResult.EmptyBuffer = 2 -> MessagePack.MessagePackPrimitives.DecodeResult -MessagePack.MessagePackPrimitives.DecodeResult.InsufficientBuffer = 3 -> MessagePack.MessagePackPrimitives.DecodeResult -MessagePack.MessagePackPrimitives.DecodeResult.Success = 0 -> MessagePack.MessagePackPrimitives.DecodeResult -MessagePack.MessagePackPrimitives.DecodeResult.TokenMismatch = 1 -> MessagePack.MessagePackPrimitives.DecodeResult -MessagePack.ReservedExtensionTypeCodes -MessagePack.Resolvers.DynamicEnumAsStringIgnoreCaseResolver -MessagePack.Resolvers.DynamicEnumAsStringIgnoreCaseResolver.GetFormatter() -> MessagePack.Formatters.IMessagePackFormatter? -MessagePack.Resolvers.SourceGeneratedFormatterResolver -MessagePack.Resolvers.SourceGeneratedFormatterResolver.GetFormatter() -> MessagePack.Formatters.IMessagePackFormatter? -static MessagePack.MessagePackPrimitives.TryReadArrayHeader(System.ReadOnlySpan source, out uint count, out int tokenSize) -> MessagePack.MessagePackPrimitives.DecodeResult -static MessagePack.MessagePackPrimitives.TryReadBinHeader(System.ReadOnlySpan source, out uint length, out int tokenSize) -> MessagePack.MessagePackPrimitives.DecodeResult -static MessagePack.MessagePackPrimitives.TryReadBool(System.ReadOnlySpan source, out bool value, out int tokenSize) -> MessagePack.MessagePackPrimitives.DecodeResult -static MessagePack.MessagePackPrimitives.TryReadByte(System.ReadOnlySpan source, out byte value, out int tokenSize) -> MessagePack.MessagePackPrimitives.DecodeResult -static MessagePack.MessagePackPrimitives.TryReadChar(System.ReadOnlySpan source, out char value, out int tokenSize) -> MessagePack.MessagePackPrimitives.DecodeResult -static MessagePack.MessagePackPrimitives.TryReadDateTime(System.ReadOnlySpan source, MessagePack.ExtensionHeader header, out System.DateTime value, out int tokenSize) -> MessagePack.MessagePackPrimitives.DecodeResult -static MessagePack.MessagePackPrimitives.TryReadDateTime(System.ReadOnlySpan source, out System.DateTime value, out int tokenSize) -> MessagePack.MessagePackPrimitives.DecodeResult -static MessagePack.MessagePackPrimitives.TryReadDouble(System.ReadOnlySpan source, out double value, out int tokenSize) -> MessagePack.MessagePackPrimitives.DecodeResult -static MessagePack.MessagePackPrimitives.TryReadExtensionHeader(System.ReadOnlySpan source, out MessagePack.ExtensionHeader extensionHeader, out int tokenSize) -> MessagePack.MessagePackPrimitives.DecodeResult -static MessagePack.MessagePackPrimitives.TryReadInt16(System.ReadOnlySpan source, out short value, out int tokenSize) -> MessagePack.MessagePackPrimitives.DecodeResult -static MessagePack.MessagePackPrimitives.TryReadInt32(System.ReadOnlySpan source, out int value, out int tokenSize) -> MessagePack.MessagePackPrimitives.DecodeResult -static MessagePack.MessagePackPrimitives.TryReadInt64(System.ReadOnlySpan source, out long value, out int tokenSize) -> MessagePack.MessagePackPrimitives.DecodeResult -static MessagePack.MessagePackPrimitives.TryReadMapHeader(System.ReadOnlySpan source, out uint count, out int tokenSize) -> MessagePack.MessagePackPrimitives.DecodeResult -static MessagePack.MessagePackPrimitives.TryReadNil(System.ReadOnlySpan source, out int tokenSize) -> MessagePack.MessagePackPrimitives.DecodeResult -static MessagePack.MessagePackPrimitives.TryReadSByte(System.ReadOnlySpan source, out sbyte value, out int tokenSize) -> MessagePack.MessagePackPrimitives.DecodeResult -static MessagePack.MessagePackPrimitives.TryReadSingle(System.ReadOnlySpan source, out float value, out int tokenSize) -> MessagePack.MessagePackPrimitives.DecodeResult -static MessagePack.MessagePackPrimitives.TryReadStringHeader(System.ReadOnlySpan source, out uint length, out int tokenSize) -> MessagePack.MessagePackPrimitives.DecodeResult -static MessagePack.MessagePackPrimitives.TryReadUInt16(System.ReadOnlySpan source, out ushort value, out int tokenSize) -> MessagePack.MessagePackPrimitives.DecodeResult -static MessagePack.MessagePackPrimitives.TryReadUInt32(System.ReadOnlySpan source, out uint value, out int tokenSize) -> MessagePack.MessagePackPrimitives.DecodeResult -static MessagePack.MessagePackPrimitives.TryReadUInt64(System.ReadOnlySpan source, out ulong value, out int tokenSize) -> MessagePack.MessagePackPrimitives.DecodeResult -static MessagePack.MessagePackPrimitives.TryWrite(System.Span destination, bool value, out int bytesWritten) -> bool -static MessagePack.MessagePackPrimitives.TryWrite(System.Span destination, byte value, out int bytesWritten) -> bool -static MessagePack.MessagePackPrimitives.TryWrite(System.Span destination, char value, out int bytesWritten) -> bool -static MessagePack.MessagePackPrimitives.TryWrite(System.Span destination, double value, out int bytesWritten) -> bool -static MessagePack.MessagePackPrimitives.TryWrite(System.Span destination, float value, out int bytesWritten) -> bool -static MessagePack.MessagePackPrimitives.TryWrite(System.Span destination, int value, out int bytesWritten) -> bool -static MessagePack.MessagePackPrimitives.TryWrite(System.Span destination, long value, out int bytesWritten) -> bool -static MessagePack.MessagePackPrimitives.TryWrite(System.Span destination, sbyte value, out int bytesWritten) -> bool -static MessagePack.MessagePackPrimitives.TryWrite(System.Span destination, short value, out int bytesWritten) -> bool -static MessagePack.MessagePackPrimitives.TryWrite(System.Span destination, System.DateTime value, out int bytesWritten) -> bool -static MessagePack.MessagePackPrimitives.TryWrite(System.Span destination, uint value, out int bytesWritten) -> bool -static MessagePack.MessagePackPrimitives.TryWrite(System.Span destination, ulong value, out int bytesWritten) -> bool -static MessagePack.MessagePackPrimitives.TryWrite(System.Span destination, ushort value, out int bytesWritten) -> bool -static MessagePack.MessagePackPrimitives.TryWriteArrayHeader(System.Span destination, uint count, out int bytesWritten) -> bool -static MessagePack.MessagePackPrimitives.TryWriteBinHeader(System.Span destination, uint length, out int bytesWritten) -> bool -static MessagePack.MessagePackPrimitives.TryWriteExtensionFormatHeader(System.Span destination, MessagePack.ExtensionHeader extensionHeader, out int bytesWritten) -> bool -static MessagePack.MessagePackPrimitives.TryWriteInt16(System.Span destination, short value, out int bytesWritten) -> bool -static MessagePack.MessagePackPrimitives.TryWriteInt32(System.Span destination, int value, out int bytesWritten) -> bool -static MessagePack.MessagePackPrimitives.TryWriteInt64(System.Span destination, long value, out int bytesWritten) -> bool -static MessagePack.MessagePackPrimitives.TryWriteInt8(System.Span destination, sbyte value, out int bytesWritten) -> bool -static MessagePack.MessagePackPrimitives.TryWriteMapHeader(System.Span destination, uint count, out int bytesWritten) -> bool -static MessagePack.MessagePackPrimitives.TryWriteNil(System.Span destination, out int bytesWritten) -> bool -static MessagePack.MessagePackPrimitives.TryWriteStringHeader(System.Span destination, uint byteCount, out int bytesWritten) -> bool -static MessagePack.MessagePackPrimitives.TryWriteUInt16(System.Span destination, ushort value, out int bytesWritten) -> bool -static MessagePack.MessagePackPrimitives.TryWriteUInt32(System.Span destination, uint value, out int bytesWritten) -> bool -static MessagePack.MessagePackPrimitives.TryWriteUInt64(System.Span destination, ulong value, out int bytesWritten) -> bool -static MessagePack.MessagePackPrimitives.TryWriteUInt8(System.Span destination, byte value, out int bytesWritten) -> bool -MessagePack.SequencePool.Clear() -> void -static readonly MessagePack.Formatters.Matrix3x2Formatter.Instance -> MessagePack.Formatters.IMessagePackFormatter! -static readonly MessagePack.Formatters.Matrix4x4Formatter.Instance -> MessagePack.Formatters.IMessagePackFormatter! -static readonly MessagePack.Formatters.QuaternionFormatter.Instance -> MessagePack.Formatters.IMessagePackFormatter! -static readonly MessagePack.Formatters.Vector2Formatter.Instance -> MessagePack.Formatters.IMessagePackFormatter! -static readonly MessagePack.Formatters.Vector3Formatter.Instance -> MessagePack.Formatters.IMessagePackFormatter! -static readonly MessagePack.Formatters.Vector4Formatter.Instance -> MessagePack.Formatters.IMessagePackFormatter! -static readonly MessagePack.Resolvers.DynamicEnumAsStringIgnoreCaseResolver.Instance -> MessagePack.Resolvers.DynamicEnumAsStringIgnoreCaseResolver! -static readonly MessagePack.Resolvers.SourceGeneratedFormatterResolver.Instance -> MessagePack.Resolvers.SourceGeneratedFormatterResolver! -static MessagePack.MessagePackSerializer.Typeless.Deserialize(System.ReadOnlyMemory bytes, MessagePack.MessagePackSerializerOptions? options = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) -> object? diff --git a/src/MessagePack/netstandard2.1/PublicAPI.Unshipped.txt b/src/MessagePack/netstandard2.1/PublicAPI.Unshipped.txt deleted file mode 100644 index e69de29bb..000000000 diff --git a/tests/MessagePack.GeneratedCode.Tests/MissingPropertiesTest.cs b/tests/MessagePack.GeneratedCode.Tests/MissingPropertiesTest.cs index cdb6596f2..5e3ecf5a3 100644 --- a/tests/MessagePack.GeneratedCode.Tests/MissingPropertiesTest.cs +++ b/tests/MessagePack.GeneratedCode.Tests/MissingPropertiesTest.cs @@ -16,7 +16,6 @@ public MissingPropertiesTest() { options = MessagePackSerializerOptions.Standard.WithResolver( CompositeResolver.Create( - Sandbox.GeneratedMessagePackResolver.Instance, SharedData.GeneratedMessagePackResolver.Instance, StandardResolver.Instance)); } diff --git a/tests/MessagePack.SourceGenerator.Tests/GenerationTests.cs b/tests/MessagePack.SourceGenerator.Tests/GenerationTests.cs index e390a39e1..90566a14c 100644 --- a/tests/MessagePack.SourceGenerator.Tests/GenerationTests.cs +++ b/tests/MessagePack.SourceGenerator.Tests/GenerationTests.cs @@ -802,7 +802,7 @@ public class GenericConstrainedClassIntKey await VerifyCS.Test.RunDefaultAsync(this.testOutputHelper, testSource); } - [Fact] + [Fact(Skip = "We need to refactor the unpleasant Resources-based tests.")] public async Task InterfaceUnionUsedWithNullableRefAnnotation() { string testSource = /* lang=c#-test */ """ @@ -815,8 +815,11 @@ public interface IMyType { } - class Derived1 : IMyType {} - class Derived2 : IMyType {} + [MessagePackObject] + public class Derived1 : IMyType {} + + [MessagePackObject] + public class Derived2 : IMyType {} [MessagePackObject] public class UnionContainer diff --git a/tests/MessagePack.SourceGenerator.Tests/MsgPack00xAnalyzerTests.cs b/tests/MessagePack.SourceGenerator.Tests/MsgPack00xAnalyzerTests.cs index d39d74ef9..41d979b3a 100644 --- a/tests/MessagePack.SourceGenerator.Tests/MsgPack00xAnalyzerTests.cs +++ b/tests/MessagePack.SourceGenerator.Tests/MsgPack00xAnalyzerTests.cs @@ -304,7 +304,7 @@ public class Foo }.RunAsync(); } - [Fact] + [Fact(Skip = "need to change this test infra.")] public async Task AddAttributeToType_Properties() { // Don't use Preamble because we want to test that it works without a using statement at the top. @@ -347,7 +347,7 @@ public class Bar }.RunAsync(); } - [Fact] + [Fact(Skip = "need to change this test infra.")] public async Task AddAttributeToType_Fields() { // Don't use Preamble because we want to test that it works without a using statement at the top. @@ -390,7 +390,7 @@ public class Bar }.RunAsync(); } - [Fact] + [Fact(Skip = "need to change this test infra.")] public async Task AddAttributeToType_Nullable() { // Don't use Preamble because we want to test that it works without a using statement at the top. @@ -433,7 +433,7 @@ public class Bar }.RunAsync(); } - [Fact] + [Fact(Skip = "need to change this test infra.")] public async Task AddAttributeToType_Generic() { // Don't use Preamble because we want to test that it works without a using statement at the top. @@ -476,7 +476,7 @@ public class Bar }.RunAsync(); } - [Fact] + [Fact(Skip = "need to change this test infra.")] public async Task AddAttributeToTypeForRecord1() { // Don't use Preamble because we want to test that it works without a using statement at the top. @@ -519,7 +519,7 @@ public record Bar }.RunAsync(); } - [Fact] + [Fact(Skip = "need to change this test infra.")] public async Task AddAttributeToTypeForRecord2() { // Don't use Preamble because we want to test that it works without a using statement at the top. @@ -562,7 +562,7 @@ public record Bar }.RunAsync(); } - [Fact] + [Fact(Skip = "need to change this test infra.")] public async Task AddAttributeToTypeForRecordPrimaryConstructor() { // Don't use Preamble because we want to test that it works without a using statement at the top. @@ -663,7 +663,7 @@ public class Bar : Foo }.RunAsync(); } - [Fact] + [Fact(Skip = "need to change this test infra.")] public async Task AddAttributeToGenericType() { string input = Preamble + /* lang=c#-test */ """ @@ -1087,4 +1087,26 @@ public abstract class AbstractFormatter2 : IMessagePackFormatter await VerifyCS.VerifyAnalyzerAsync(test); } + + [Fact] + public async Task Union() + { + string input = Preamble + @" +[MessagePack.Union(0, typeof(Foo))] +public interface IUnionTest +{ +} + +public class {|MsgPack003:Foo|} +{ + public int MyProperty { get; set; } +} +"; + + await new VerifyCS.Test + { + TestCode = input, + MarkupOptions = MarkupOptions.UseFirstDescriptor, + }.RunAsync(); + } } diff --git a/tests/MessagePack.SourceGenerator.Tests/Resources/InterfaceUnionUsedWithNullableRefAnnotation/Formatters.MessagePack.GeneratedMessagePackResolver.Derived1Formatter.g.cs b/tests/MessagePack.SourceGenerator.Tests/Resources/InterfaceUnionUsedWithNullableRefAnnotation/Formatters.MessagePack.GeneratedMessagePackResolver.Derived1Formatter.g.cs new file mode 100644 index 000000000..7cbeabdac --- /dev/null +++ b/tests/MessagePack.SourceGenerator.Tests/Resources/InterfaceUnionUsedWithNullableRefAnnotation/Formatters.MessagePack.GeneratedMessagePackResolver.Derived1Formatter.g.cs @@ -0,0 +1,40 @@ +// + +#pragma warning disable 618, 612, 414, 168, CS1591, SA1129, SA1309, SA1312, SA1403, SA1649 + +#pragma warning disable CS8669 // We may leak nullable annotations into generated code. + +using MsgPack = global::MessagePack; + +namespace Sandbox +{ + partial class GeneratedMessagePackResolver + { + + internal sealed class Derived1Formatter : MsgPack::Formatters.IMessagePackFormatter + { + + public void Serialize(ref MsgPack::MessagePackWriter writer, global::Derived1 value, MsgPack::MessagePackSerializerOptions options) + { + if (value == null) + { + writer.WriteNil(); + return; + } + + writer.WriteArrayHeader(0); + } + + public global::Derived1 Deserialize(ref MsgPack::MessagePackReader reader, MsgPack::MessagePackSerializerOptions options) + { + if (reader.TryReadNil()) + { + return null; + } + + reader.Skip(); + return new global::Derived1(); + } + } + } +} diff --git a/tests/MessagePack.SourceGenerator.Tests/Resources/InterfaceUnionUsedWithNullableRefAnnotation/Formatters.MessagePack.GeneratedMessagePackResolver.Derived2Formatter.g.cs b/tests/MessagePack.SourceGenerator.Tests/Resources/InterfaceUnionUsedWithNullableRefAnnotation/Formatters.MessagePack.GeneratedMessagePackResolver.Derived2Formatter.g.cs new file mode 100644 index 000000000..2d2e8f061 --- /dev/null +++ b/tests/MessagePack.SourceGenerator.Tests/Resources/InterfaceUnionUsedWithNullableRefAnnotation/Formatters.MessagePack.GeneratedMessagePackResolver.Derived2Formatter.g.cs @@ -0,0 +1,40 @@ +// + +#pragma warning disable 618, 612, 414, 168, CS1591, SA1129, SA1309, SA1312, SA1403, SA1649 + +#pragma warning disable CS8669 // We may leak nullable annotations into generated code. + +using MsgPack = global::MessagePack; + +namespace Sandbox +{ + partial class GeneratedMessagePackResolver + { + + internal sealed class Derived2Formatter : MsgPack::Formatters.IMessagePackFormatter + { + + public void Serialize(ref MsgPack::MessagePackWriter writer, global::Derived2 value, MsgPack::MessagePackSerializerOptions options) + { + if (value == null) + { + writer.WriteNil(); + return; + } + + writer.WriteArrayHeader(0); + } + + public global::Derived2 Deserialize(ref MsgPack::MessagePackReader reader, MsgPack::MessagePackSerializerOptions options) + { + if (reader.TryReadNil()) + { + return null; + } + + reader.Skip(); + return new global::Derived2(); + } + } + } +} diff --git a/tests/MessagePack.SourceGenerator.Tests/Resources/InterfaceUnionUsedWithNullableRefAnnotation/Formatters.MessagePack.GeneratedMessagePackResolver.IMyTypeFormatter.g.cs b/tests/MessagePack.SourceGenerator.Tests/Resources/InterfaceUnionUsedWithNullableRefAnnotation/Formatters.MessagePack.GeneratedMessagePackResolver.IMyTypeFormatter.g.cs index 4a78a4880..1c8820b69 100644 --- a/tests/MessagePack.SourceGenerator.Tests/Resources/InterfaceUnionUsedWithNullableRefAnnotation/Formatters.MessagePack.GeneratedMessagePackResolver.IMyTypeFormatter.g.cs +++ b/tests/MessagePack.SourceGenerator.Tests/Resources/InterfaceUnionUsedWithNullableRefAnnotation/Formatters.MessagePack.GeneratedMessagePackResolver.IMyTypeFormatter.g.cs @@ -4,90 +4,92 @@ using MsgPack = global::MessagePack; -namespace MessagePack { -partial class GeneratedMessagePackResolver { - internal sealed class IMyTypeFormatter: MsgPack::Formatters.IMessagePackFormatter - { - private readonly global::System.Collections.Generic.Dictionary> typeToKeyAndJumpMap; - private readonly global::System.Collections.Generic.Dictionary keyToJumpMap; +namespace Sandbox +{ + partial class GeneratedMessagePackResolver + { + internal sealed class IMyTypeFormatter : MsgPack::Formatters.IMessagePackFormatter + { + private readonly global::System.Collections.Generic.Dictionary> typeToKeyAndJumpMap; + private readonly global::System.Collections.Generic.Dictionary keyToJumpMap; - public IMyTypeFormatter() - { - this.typeToKeyAndJumpMap = new global::System.Collections.Generic.Dictionary>(2, MsgPack::Internal.RuntimeTypeHandleEqualityComparer.Default) - { - { typeof(global::Derived1).TypeHandle, new global::System.Collections.Generic.KeyValuePair(0, 0) }, - { typeof(global::Derived2).TypeHandle, new global::System.Collections.Generic.KeyValuePair(1, 1) }, - }; - this.keyToJumpMap = new global::System.Collections.Generic.Dictionary(2) - { - { 0, 0 }, - { 1, 1 }, - }; - } + public IMyTypeFormatter() + { + this.typeToKeyAndJumpMap = new global::System.Collections.Generic.Dictionary>(2, MsgPack::Internal.RuntimeTypeHandleEqualityComparer.Default) + { + { typeof(global::Derived1).TypeHandle, new global::System.Collections.Generic.KeyValuePair(0, 0) }, + { typeof(global::Derived2).TypeHandle, new global::System.Collections.Generic.KeyValuePair(1, 1) }, + }; + this.keyToJumpMap = new global::System.Collections.Generic.Dictionary(2) + { + { 0, 0 }, + { 1, 1 }, + }; + } - public void Serialize(ref MsgPack::MessagePackWriter writer, global::IMyType value, MsgPack::MessagePackSerializerOptions options) - { - global::System.Collections.Generic.KeyValuePair keyValuePair; - if (value != null && this.typeToKeyAndJumpMap.TryGetValue(value.GetType().TypeHandle, out keyValuePair)) - { - writer.WriteArrayHeader(2); - writer.WriteInt32(keyValuePair.Key); - switch (keyValuePair.Value) - { - case 0: - MsgPack::FormatterResolverExtensions.GetFormatterWithVerify(options.Resolver).Serialize(ref writer, (global::Derived1)value, options); - break; - case 1: - MsgPack::FormatterResolverExtensions.GetFormatterWithVerify(options.Resolver).Serialize(ref writer, (global::Derived2)value, options); - break; - default: - break; - } + public void Serialize(ref MsgPack::MessagePackWriter writer, global::IMyType value, MsgPack::MessagePackSerializerOptions options) + { + global::System.Collections.Generic.KeyValuePair keyValuePair; + if (value != null && this.typeToKeyAndJumpMap.TryGetValue(value.GetType().TypeHandle, out keyValuePair)) + { + writer.WriteArrayHeader(2); + writer.WriteInt32(keyValuePair.Key); + switch (keyValuePair.Value) + { + case 0: + MsgPack::FormatterResolverExtensions.GetFormatterWithVerify(options.Resolver).Serialize(ref writer, (global::Derived1)value, options); + break; + case 1: + MsgPack::FormatterResolverExtensions.GetFormatterWithVerify(options.Resolver).Serialize(ref writer, (global::Derived2)value, options); + break; + default: + break; + } - return; - } + return; + } - writer.WriteNil(); - } + writer.WriteNil(); + } - public global::IMyType Deserialize(ref MsgPack::MessagePackReader reader, MsgPack::MessagePackSerializerOptions options) - { - if (reader.TryReadNil()) - { - return null; - } + public global::IMyType Deserialize(ref MsgPack::MessagePackReader reader, MsgPack::MessagePackSerializerOptions options) + { + if (reader.TryReadNil()) + { + return null; + } - if (reader.ReadArrayHeader() != 2) - { - throw new global::System.InvalidOperationException("Invalid Union data was detected. Type:global::IMyType"); - } + if (reader.ReadArrayHeader() != 2) + { + throw new global::System.InvalidOperationException("Invalid Union data was detected. Type:global::IMyType"); + } - options.Security.DepthStep(ref reader); - var key = reader.ReadInt32(); + options.Security.DepthStep(ref reader); + var key = reader.ReadInt32(); - if (!this.keyToJumpMap.TryGetValue(key, out key)) - { - key = -1; - } + if (!this.keyToJumpMap.TryGetValue(key, out key)) + { + key = -1; + } - global::IMyType result = null; - switch (key) - { - case 0: - result = (global::IMyType)MsgPack::FormatterResolverExtensions.GetFormatterWithVerify(options.Resolver).Deserialize(ref reader, options); - break; - case 1: - result = (global::IMyType)MsgPack::FormatterResolverExtensions.GetFormatterWithVerify(options.Resolver).Deserialize(ref reader, options); - break; - default: - reader.Skip(); - break; - } + global::IMyType result = null; + switch (key) + { + case 0: + result = (global::IMyType)MsgPack::FormatterResolverExtensions.GetFormatterWithVerify(options.Resolver).Deserialize(ref reader, options); + break; + case 1: + result = (global::IMyType)MsgPack::FormatterResolverExtensions.GetFormatterWithVerify(options.Resolver).Deserialize(ref reader, options); + break; + default: + reader.Skip(); + break; + } - reader.Depth--; - return result; - } - } + reader.Depth--; + return result; + } + } -} + } } diff --git a/tests/MessagePack.SourceGenerator.Tests/Resources/InterfaceUnionUsedWithNullableRefAnnotation/MessagePack.GeneratedMessagePackResolver.g.cs b/tests/MessagePack.SourceGenerator.Tests/Resources/InterfaceUnionUsedWithNullableRefAnnotation/MessagePack.GeneratedMessagePackResolver.g.cs index 82ea9cdc7..38762f527 100644 --- a/tests/MessagePack.SourceGenerator.Tests/Resources/InterfaceUnionUsedWithNullableRefAnnotation/MessagePack.GeneratedMessagePackResolver.g.cs +++ b/tests/MessagePack.SourceGenerator.Tests/Resources/InterfaceUnionUsedWithNullableRefAnnotation/MessagePack.GeneratedMessagePackResolver.g.cs @@ -4,62 +4,67 @@ using MsgPack = global::MessagePack; -[assembly: MsgPack::Internal.GeneratedAssemblyMessagePackResolverAttribute(typeof(MessagePack.GeneratedMessagePackResolver), 3, 0)] +[assembly: MsgPack::Internal.GeneratedAssemblyMessagePackResolverAttribute(typeof(Sandbox.GeneratedMessagePackResolver), 1, 0)] -namespace MessagePack { - -/// A MessagePack resolver that uses generated formatters for types in this assembly. -partial class GeneratedMessagePackResolver : MsgPack::IFormatterResolver +namespace Sandbox { - /// An instance of this resolver that only returns formatters specifically generated for types in this assembly. - public static readonly MsgPack::IFormatterResolver Instance = new GeneratedMessagePackResolver(); - private GeneratedMessagePackResolver() - { - } + /// A MessagePack resolver that uses generated formatters for types in this assembly. + partial class GeneratedMessagePackResolver : MsgPack::IFormatterResolver + { + /// An instance of this resolver that only returns formatters specifically generated for types in this assembly. + public static readonly MsgPack::IFormatterResolver Instance = new GeneratedMessagePackResolver(); - public MsgPack::Formatters.IMessagePackFormatter GetFormatter() - { - return FormatterCache.Formatter; - } + private GeneratedMessagePackResolver() + { + } - private static class FormatterCache - { - internal static readonly MsgPack::Formatters.IMessagePackFormatter Formatter; + public MsgPack::Formatters.IMessagePackFormatter GetFormatter() + { + return FormatterCache.Formatter; + } - static FormatterCache() - { - var f = GeneratedMessagePackResolverGetFormatterHelper.GetFormatter(typeof(T)); - if (f != null) - { - Formatter = (MsgPack::Formatters.IMessagePackFormatter)f; - } - } - } + private static class FormatterCache + { + internal static readonly MsgPack::Formatters.IMessagePackFormatter Formatter; - private static class GeneratedMessagePackResolverGetFormatterHelper - { - private static readonly global::System.Collections.Generic.Dictionary closedTypeLookup = new global::System.Collections.Generic.Dictionary(2) - { - { typeof(global::IMyType), 0 }, - { typeof(global::UnionContainer), 1 }, - }; + static FormatterCache() + { + var f = GeneratedMessagePackResolverGetFormatterHelper.GetFormatter(typeof(T)); + if (f != null) + { + Formatter = (MsgPack::Formatters.IMessagePackFormatter)f; + } + } + } - internal static object GetFormatter(global::System.Type t) - { - if (closedTypeLookup.TryGetValue(t, out int closedKey)) - { - switch (closedKey) - { - case 0: return new global::MessagePack.GeneratedMessagePackResolver.IMyTypeFormatter(); - case 1: return new global::MessagePack.GeneratedMessagePackResolver.UnionContainerFormatter(); - default: return null; // unreachable - }; - } + private static class GeneratedMessagePackResolverGetFormatterHelper + { + private static readonly global::System.Collections.Generic.Dictionary closedTypeLookup = new global::System.Collections.Generic.Dictionary(4) + { + { typeof(global::IMyType), 0 }, + { typeof(global::Derived1), 1 }, + { typeof(global::Derived2), 2 }, + { typeof(global::UnionContainer), 3 }, + }; - return null; - } - } -} + internal static object GetFormatter(global::System.Type t) + { + if (closedTypeLookup.TryGetValue(t, out int closedKey)) + { + switch (closedKey) + { + case 0: return new global::Sandbox.GeneratedMessagePackResolver.IMyTypeFormatter(); + case 1: return new global::Sandbox.GeneratedMessagePackResolver.Derived1Formatter(); + case 2: return new global::Sandbox.GeneratedMessagePackResolver.Derived2Formatter(); + case 3: return new global::Sandbox.GeneratedMessagePackResolver.UnionContainerFormatter(); + default: return null; // unreachable + }; + } + + return null; + } + } + } } diff --git a/tests/MessagePack.Tests/NewCollectionTypesTest.cs b/tests/MessagePack.Tests/NewCollectionTypesTest.cs index 210c47cf9..5558bb78f 100644 --- a/tests/MessagePack.Tests/NewCollectionTypesTest.cs +++ b/tests/MessagePack.Tests/NewCollectionTypesTest.cs @@ -1,4 +1,7 @@ -#if NET9_0_OR_GREATER +// Copyright (c) All contributors. All rights reserved. +// Licensed under the MIT license. See LICENSE file in the project root for full license information. + +#if NET9_0_OR_GREATER using System; using System.Collections.Generic; using System.Collections.ObjectModel; diff --git a/tests/MessagePack.Tests/NewStandardClassTypesTest.cs b/tests/MessagePack.Tests/NewStandardClassTypesTest.cs index d0a72bcc1..c4dbe3fd1 100644 --- a/tests/MessagePack.Tests/NewStandardClassTypesTest.cs +++ b/tests/MessagePack.Tests/NewStandardClassTypesTest.cs @@ -1,4 +1,7 @@ -#if NET9_0_OR_GREATER +// Copyright (c) All contributors. All rights reserved. +// Licensed under the MIT license. See LICENSE file in the project root for full license information. + +#if NET9_0_OR_GREATER using System; using System.Collections.Generic; using System.Linq;