Rabbit.SerializationMaster 4.1.1

There is a newer version of this package available.
See the version list below for details.
dotnet add package Rabbit.SerializationMaster --version 4.1.1
NuGet\Install-Package Rabbit.SerializationMaster -Version 4.1.1
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="Rabbit.SerializationMaster" Version="4.1.1" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Rabbit.SerializationMaster --version 4.1.1
#r "nuget: Rabbit.SerializationMaster, 4.1.1"
#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 Rabbit.SerializationMaster as a Cake Addin
#addin nuget:?package=Rabbit.SerializationMaster&version=4.1.1

// Install Rabbit.SerializationMaster as a Cake Tool
#tool nuget:?package=Rabbit.SerializationMaster&version=4.1.1

This library enables serialization an object of any type to string format (xml/json/base64) and to deserialize a resulted string back to object instance. Also it supports to implement a custom serialization strategy.

     1. Serialize : serializes an object to string (depends on type xml/json/jsv/base64/...)
     2. Deserialize : deserializes a string to object (depends on type xml/json/jsv/base64/...)
     3. DeepCopy : performs deep copied an object

     For detail please check project site https://juanonsoftware.github.io/SerializationMaster-Package/

Product Compatible and additional computed target framework versions.
.NET Framework net is compatible. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

This package has no dependencies.

NuGet packages (5)

Showing the top 5 NuGet packages that depend on Rabbit.SerializationMaster:

Package Downloads
Rabbit.Integrations.Redis

Provide extension methods to IDatabase of StackExchange.Redis

Rabbit.SerializationMaster.JsonNet

This library enables you to serialize an object of any type to json format and to deserialize a resulted string back to object instance based on Json.NET.

Security.Users.ExternManaged

Provides an authentication service and a custom membership to use with FormsAuthentication Github source: https://github.com/vndevpro/SecurityUsers

Rabbit.SerializationMaster.Web

This library enables you to serialize an object of any type to json format and to deserialize a resulted string back to object instance based on JavaScriptSerializer.

Rabbit.SerializationMaster.ServiceStack

This library enables you to serialize an object of any type to json format and to deserialize a resulted string back to object instance based on ServiceStack.Text library.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
4.3.0 1,373 10/21/2020
4.2.2 1,071 5/18/2017
4.2.1 946 3/7/2017
4.2.0 918 3/7/2017
4.1.1 1,406 5/19/2016
4.1.0 1,136 1/7/2016
4.0.1 1,223 10/4/2015
4.0.0 1,368 7/7/2015
3.1.0 1,084 7/2/2015
3.0.0 1,136 6/30/2015

Version 4.1.1
     * Signed assembly
     Version 4.1.0
     * Extension methods (Serialize/Deserialize/DeepCopy) how have another overload with one-time-usage strategy
     * Internal strategies now are public (Base64SerializationStrategy, DataContractJsonSerializationStrategy, XmlSerializationStrategy)
     Version 4.0.1
     * Fix Serialization behavior when object type is String.
     Version 4.0.0
     * Add DeepCopy function
     * Base64Serialization will throw an exception if object's type is not serializeable.
     Version 3.1.0
     * Base64Serialization uses BinaryFormatter and requires object type with Serializable attribute.
     Version 3.0.0
     * Supports Xml/Base64/JSON (via DataContractJsonSerializer)