SerialBox 4.0.29

dotnet add package SerialBox --version 4.0.29
NuGet\Install-Package SerialBox -Version 4.0.29
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="SerialBox" Version="4.0.29" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add SerialBox --version 4.0.29
#r "nuget: SerialBox, 4.0.29"
#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 SerialBox as a Cake Addin
#addin nuget:?package=SerialBox&version=4.0.29

// Install SerialBox as a Cake Tool
#tool nuget:?package=SerialBox&version=4.0.29

SerialBox

.NET Publish

SerialBox is a library designed to simplify serialization in .Net. By default it supports XML and JSON but can be expanded upon to support other serialization targets as well.

Basic Usage

uses a library called Canister for registering itself in your ServiceCollection:

servicecollection.AddCanisterModules();

This line is required prior to using the extension methods for the first time. Once Canister is set up, you can call the extension methods provided:

[DataContract]
public class Temp
{
    [DataMember(Name = "A", Order = 1)]
    public int A { get; set; }
}

...

var TestObj = new Temp() { A = 100 };
string Value = TestObj.Serialize<string, Temp>();
Temp TestObj2 = Value.Deserialize<Temp, string>();

The Serialize function takes the serialization type as a parameter. If one is not passed in, it defaults to JSON. This parameter can either be the MIME type for the serialization type as a string or it can be a SerializationType object. The Deserialize function acts in the same manner.

Adding Serialization Types

The system comes with JSON and XML serialization, however you may wish to add other targets such as binary. In order to do this all that you need to do is create a class that inherits from ISerializer<T>:

public class MySerializer : ISerializer<byte[]>
{
    public string ContentType => "application/octet-stream";
	
	public string FileType => ".blob";
	
	public string Name => "Binary";
	
	public object Deserialize(Type objectType, byte[] data) { ... }
	
	public byte[] Serialize(Type objectType, object data) { ... }
}

After the class is created, the system will automatically pick it up and use it.

Overriding Serialization Types

By default the system uses the built in JSON and XML providers in .Net. However it is possible to override these by simply creating a class that inherits from ISerializer<T> and setting the correct ContentType to match the one that you wish to override. For instance to override the JSON provider with your own you would do the following:

public class MySerializer : ISerializer<string>
{
    public string ContentType => "application/json";
	
	public string FileType => ".json";
	
	public string Name => "JSON";
	
	public object Deserialize(Type objectType, string data) { ... }
	
	public string Serialize(Type objectType, object data) { ... }
}

After the class is created, the system will automatically pick it up and use it.

Installation

The library is available via Nuget with the package name "SerialBox". To install it run the following command in the Package Manager Console:

Install-Package SerialBox

Build Process

In order to build the library you will require the following as a minimum:

  1. Visual Studio 2022

Other than that, just clone the project and you should be able to load the solution and build without too much effort.

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.

NuGet packages (2)

Showing the top 2 NuGet packages that depend on SerialBox:

Package Downloads
TaskMaster

TaskMaster is a simple library used to manage sets of fire and forget tasks that need to run after specific dates/times.

TestFountain

TestFountain is a set of addons/extensions for xUnit.net to help with things like data generation.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
4.0.29 216 3/28/2024
4.0.28 231 3/14/2024
4.0.27 159 3/13/2024
4.0.26 355 3/5/2024
4.0.25 186 3/4/2024
4.0.24 391 2/26/2024
4.0.23 317 2/21/2024
4.0.22 245 2/19/2024
4.0.21 690 2/2/2024
4.0.20 394 1/29/2024
4.0.19 417 1/19/2024
4.0.18 1,096 12/11/2023
4.0.17 635 11/17/2023
4.0.16 404 11/16/2023
4.0.15 665 11/6/2023
4.0.14 610 10/30/2023
4.0.13 961 9/18/2023
4.0.12 688 9/11/2023
4.0.11 553 9/5/2023
4.0.10 418 9/4/2023
4.0.9 538 8/31/2023
4.0.8 463 8/30/2023
4.0.7 500 8/29/2023
4.0.6 499 8/28/2023
4.0.5 958 8/8/2023
4.0.4 558 8/7/2023
4.0.3 1,016 7/13/2023
4.0.2 505 7/12/2023
4.0.1 528 7/10/2023
4.0.0 745 12/12/2022
3.0.12 859 6/10/2022
3.0.8 1,707 1/11/2022
3.0.7 935 1/10/2022
3.0.5 1,610 1/6/2021
3.0.3 1,548 9/13/2020
3.0.2 1,665 3/25/2020
3.0.1 3,032 12/23/2019
2.0.2 3,091 6/1/2018
2.0.1 1,279 5/22/2018
2.0.0 2,510 1/2/2018
1.0.8 4,223 5/17/2017
1.0.7 1,306 3/22/2017
1.0.6 1,410 1/24/2017
1.0.5 1,438 12/9/2016
1.0.4 1,347 11/22/2016
1.0.3 1,390 11/21/2016
1.0.2 1,392 11/21/2016
1.0.1 1,435 11/21/2016