Utf8Json icon indicating copy to clipboard operation
Utf8Json copied to clipboard

Definitely Fastest and Zero Allocation JSON Serializer for C#(NET, .NET Core, Unity, Xamarin).

Results 100 Utf8Json issues
Sort by recently updated
recently updated
newest added

I'm getting the error below, however, with other serializers there's no problem. generated serializer for DbDescriptor does not support deserialize. at Utf8Json.Formatters.ThinServerDatabase_Model_DbDescriptorFormatter1.Deserialize(JsonReader& , IJsonFormatterResolver ) at Utf8Json.JsonSerializer.Deserialize[T](Byte[] bytes, Int32 offset,...

I have this simple JsonFormatter: public sealed class Int64StringConversionFormatter : IJsonFormatter { public void Serialize(ref JsonWriter writer, long value, IJsonFormatterResolver formatterResolver) { writer.WriteString(value.ToString(NumberFormatInfo.InvariantInfo)); } public long Deserialize(ref JsonReader reader, IJsonFormatterResolver...

This project is too good to go stagnant for multiple years, without even a tiny bit of maintenance. There are dozens of open issues and plenty of pull requests to...

As a user, I would like to know if there will be continued effort to support this project? Love the efficiency of this project as we've ported all of our...

Example: ``` [DataContract] public class BaseModel { public BaseModel() { Name = "BaseModel"; } [DataMember] public string Name { get; set; } } [DataContract] public class OneModel :BaseModel { public...

Hi, Let's say we have the following declaration of interfaces an classes: ``` public interface IDataHolder { byte[] Data { get; set; } } public class DataHolder : IDataHolder {...

Hi, Is there any support for Windows Embedded compact 7.0 (Compact framework 3.x)? Like to use it in my project. Thanks.

Is there a way to force the deserialization process to be case insensitive? unfortunately I've a scenario where some endpoints are returning the same structure with a different case. The...

I'm getting an unable to serialize a class object because its constructor has parameters. Is there a setting to bypass that and instantiate the object?

How do I make all properties required on deserialization? So if the property is missing or set to null in json, then deserialization fails. The normal behavior is to return...