CypherPotato.LightJson 0.5.6

There is a newer version of this package available.
See the version list below for details.
dotnet add package CypherPotato.LightJson --version 0.5.6
NuGet\Install-Package CypherPotato.LightJson -Version 0.5.6
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="CypherPotato.LightJson" Version="0.5.6" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add CypherPotato.LightJson --version 0.5.6
#r "nuget: CypherPotato.LightJson, 0.5.6"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install CypherPotato.LightJson as a Cake Addin
#addin nuget:?package=CypherPotato.LightJson&version=0.5.6

// Install CypherPotato.LightJson as a Cake Tool
#tool nuget:?package=CypherPotato.LightJson&version=0.5.6

LightJson

This project was based in the incredible work LightJson, originally made by Marcos Lopez C.

This fork includes some personal tweaks. It's aimed to read/write JSON messages without automatic type mapping. It alsos does not use Source Generators to read or write messages, which makes it possible to build code with bflat and also features manual object mapping.

Almost everything in this class is inherited from the main project mentioned above, however, there are these changes:

  • Unlike the original project, a JsonValue does not contain any AsFoobar properties, but has a method for each GetFoobar(), and the main difference is that you cannot get an implicit value of what the JsonValue is. For example, you cannot read JsonValue.GetBoolean() if the stored value is a string.
  • All functions that return an object converted from a JsonValue, such as JsonValue.GetString() for example, do not return nullable values. You can check for nullable JSON values using JsonValue.MaybeNull().
  • You can search for objects in an ignore-case manner if you set JsonOptions.PropertyNameCaseInsensitive to true.
  • Undefined values will come with JsonValueType.Undefined instead of JsonValueType.Null.
  • This projects only targets .NET 6 and above.

Additionally, this library includes these new features:

Create JsonValues from any kind of object:
object anonymousObject = new
{
    foo = "bar"
};

string json = new JsonValue(anonymousObject).ToString();
Create custom mappers (a.k.a. converters):
static void Main(string[] args)
{
    JsonOptions.Mappers.Add(new DatetimeMapper());

    string json = new JsonValue(DateTime.Now).ToString();

    Console.WriteLine(json);
}

public class DatetimeMapper : JsonSerializerMapper
{
    public override Boolean CanSerialize(Type obj)
    {
        return obj == typeof(DateTime);
    }

    public override Object Deserialize(JsonValue value)
    {
        return DateTime.Parse(value.GetString());
    }

    public override JsonValue Serialize(Object value)
    {
        DateTime t = (DateTime)value;
        return new JsonValue(t.ToString("s"));
    }
}
Fluent syntax for retrieving items:
// $.foobar must be present, non null and carry an string value.
string stringValue = obj["foobar"].GetString();

// $.bazdaz can be null or undefined, but if not, it must be an string.
string? optionalValue = obj["bazdaz"].MaybeNull()?.GetString();

// $.duzkaz must be present, non null, be an json array and every children on it
// must be an string value.
string[] arrayItems = obj["duzkaz"].GetJsonArray().Select(i => i.GetString()).ToArray();

// $.user must be present, non null, and must be mapped to User, which it's mapper
// is defined on JsonOptions.Mappers.
User user = obj["user"].Map<User>();
Product Compatible and additional computed target framework versions.
.NET net6.0 is compatible.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
  • net6.0

    • No dependencies.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
0.9.0 67 5/28/2024
0.9.0-beta3 75 5/14/2024
0.9.0-beta2 83 5/4/2024
0.9.0-beta1 39 5/2/2024
0.8.0 96 4/4/2024
0.7.0 95 3/24/2024
0.6.0 115 1/18/2024
0.5.6 176 12/6/2023
0.5.5 122 11/30/2023