nf.MessagePack
1.0.3
dotnet add package nf.MessagePack --version 1.0.3
NuGet\Install-Package nf.MessagePack -Version 1.0.3
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="nf.MessagePack" Version="1.0.3" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="nf.MessagePack" Version="1.0.3" />
<PackageReference Include="nf.MessagePack" />
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add nf.MessagePack --version 1.0.3
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: nf.MessagePack, 1.0.3"
#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.
#addin nuget:?package=nf.MessagePack&version=1.0.3
#tool nuget:?package=nf.MessagePack&version=1.0.3
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
nanoFramework.MessagePack
nanoFramework.MessagePack is a simple, lightweight MsgPack.Light serialization library that can be used in nanoFramework solutions.
MessagePack is an object serialization specification like JSON.
Usage
Serialization to bytes array:
var value = new TestClass();
var bytes = MessagePackSerializer.Serialize(value);
Deserialization:
var result = (TestClass)MessagePackSerializer.Deserialize(typeof(TestClass), bytes);
Your type serialization/deserialization:
If you want to work with your own types, first thing you need - type converter. <<TODO>>
Product | Versions 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.
-
- nanoFramework.CoreLibrary (>= 1.17.11)
- nanoFramework.System.Collections (>= 1.5.67)
- nanoFramework.System.IO.Streams (>= 1.1.94)
- nanoFramework.System.Text (>= 1.3.42)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
Fix SerializationException constructor visibility.