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

is it possible to fill existing object instead creating new one? something like void JsonSerializer.Deserialize(string json,T output)

The de-serialize function can accept array of bytes with offset, can we have one more overloaded method where i can tell the length/count e.g, Deserialize(bytes, offset, count, JsonSerializer.defaultResolver); Or we...

Given the following type structure: ```csharp public abstract class Setting { public string Name { get; set; } public abstract string Kind { get; } } public class TextSetting :...

This project has been abandoned for many years and suffers from critical bugs, some of which silently corrupt data.

Hey there! I belong to an open source security research community, and a member (@dwisiswant0) has found an issue, but doesn’t know the best way to disclose it. If not...

Some Float-Point Numbers are not Deserialize correctly Example: var x = JsonSerializer.Deserialize("{\"a\":59.08634249999999}"); will result in {[a, 5.90863425E+15]}

It seems that the code is not net standard 2.0 compatible.

We are using Utf8Json library in our application. From the below line we are seeing weird exception being thrown which we cannot figure out why it is happening? From this...

Hello, I had an issue with UniversalCodeGenerator. Assume I have a struct like this: ```csharp [DataContract] public struct Foo { [DataMember(Name = "bar")] public readonly int Bar; public Foo(int Bar)...

Hi all, I swapped out `System.Text.Json` for this project with the code below ``` options.OutputFormatters.RemoveType(); options.OutputFormatters.Add(new JsonOutputFormatter(ApiJsonSerializer.DefaultResolver)); options.InputFormatters.RemoveType(); options.InputFormatters.Add(new JsonInputFormatter(ApiJsonSerializer.DefaultResolver)); ``` I just brought in swashbuckle and it seems to...