Ecng.Serialization 1.0.260

There is a newer version of this package available.
See the version list below for details.
dotnet add package Ecng.Serialization --version 1.0.260
                    
NuGet\Install-Package Ecng.Serialization -Version 1.0.260
                    
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="Ecng.Serialization" Version="1.0.260" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Ecng.Serialization" Version="1.0.260" />
                    
Directory.Packages.props
<PackageReference Include="Ecng.Serialization" />
                    
Project file
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 Ecng.Serialization --version 1.0.260
                    
#r "nuget: Ecng.Serialization, 1.0.260"
                    
#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.
#:package Ecng.Serialization@1.0.260
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=Ecng.Serialization&version=1.0.260
                    
Install as a Cake Addin
#tool nuget:?package=Ecng.Serialization&version=1.0.260
                    
Install as a Cake Tool

Ecng.Serialization

Helpers for JSON and high-performance binary serialization.

Purpose

Provide easy to use serializers with built in SettingsStorage support so objects can be persisted or transmitted with minimal code.

Key Features

  • JSON serializer with indentation and enum string options
  • Streaming API and asynchronous methods
  • Custom converters and IPersistable helpers
  • SpanWriter/SpanReader for compact binary format

JSON Example

var serializer = JsonSerializer<MyData>.CreateDefault();
await using var stream = File.OpenWrite("data.json");
await serializer.SerializeAsync(data, stream, CancellationToken.None);

await using var read = File.OpenRead("data.json");
var loaded = await serializer.DeserializeAsync(read, CancellationToken.None);

Same using standard .NET:

await System.Text.Json.JsonSerializer.SerializeAsync(stream, data);

Binary primitives

SpanWriter writer = stackalloc byte[256];
writer.WriteInt32(42);
writer.WriteString("hello");

var reader = new SpanReader(writer.Buffer);
int num = reader.ReadInt32();
string text = reader.ReadString();

SettingsStorage

var storage = new SettingsStorage();
myObj.Save(storage);

string raw = storage.SaveToString<JsonSerializer<SettingsStorage>>();
var restored = raw.LoadFromString<JsonSerializer<SettingsStorage>>();
Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  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.  net9.0 was computed.  net9.0-android was computed.  net9.0-browser was computed.  net9.0-ios was computed.  net9.0-maccatalyst was computed.  net9.0-macos was computed.  net9.0-tvos was computed.  net9.0-windows was computed.  net10.0 was computed.  net10.0-android was computed.  net10.0-browser was computed.  net10.0-ios was computed.  net10.0-maccatalyst was computed.  net10.0-macos was computed.  net10.0-tvos was computed.  net10.0-windows was computed. 
.NET Core netcoreapp2.0 was computed.  netcoreapp2.1 was computed.  netcoreapp2.2 was computed.  netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.0 is compatible.  netstandard2.1 was computed. 
.NET Framework net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen40 was computed.  tizen60 was computed. 
Xamarin.iOS xamarinios was computed. 
Xamarin.Mac xamarinmac was computed. 
Xamarin.TVOS xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos 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 Ecng.Serialization:

Package Downloads
Ecng.ComponentModel

Ecng system framework

Ecng.Interop.Windows

Ecng system framework

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
1.0.263 338 7/16/2025
1.0.262 1,025 7/13/2025
1.0.261 323 7/13/2025
1.0.260 303 7/12/2025
1.0.259 976 7/8/2025
1.0.258 734 7/4/2025
1.0.257 372 7/2/2025
1.0.256 2,770 6/16/2025
1.0.255 498 6/9/2025
1.0.254 398 6/8/2025
1.0.253 1,284 5/21/2025
1.0.252 422 5/17/2025
1.0.251 1,336 5/12/2025
1.0.250 389 5/12/2025
1.0.249 343 5/11/2025
1.0.248 338 5/11/2025
1.0.247 278 5/10/2025
1.0.246 267 5/10/2025
1.0.245 748 4/17/2025
1.0.244 411 4/15/2025
1.0.243 336 4/12/2025
1.0.242 2,822 3/22/2025
1.0.241 362 3/20/2025
1.0.240 345 3/20/2025
1.0.239 349 3/19/2025
1.0.238 3,278 2/26/2025
1.0.237 396 2/26/2025
1.0.236 5,183 2/5/2025
1.0.235 2,611 1/21/2025
1.0.234 359 1/20/2025
1.0.233 298 1/20/2025
1.0.232 366 1/19/2025
1.0.231 1,342 1/14/2025
1.0.230 562 1/12/2025
1.0.229 320 1/12/2025
1.0.228 330 1/12/2025
1.0.227 436 1/12/2025
1.0.226 690 1/10/2025
1.0.225 3,112 12/27/2024
1.0.224 389 12/19/2024
1.0.223 851 11/20/2024
1.0.222 2,769 11/18/2024
1.0.221 1,519 11/7/2024
1.0.220 617 10/31/2024
1.0.219 609 10/19/2024
1.0.218 2,449 10/12/2024
1.0.217 815 10/9/2024
1.0.216 2,259 10/5/2024
1.0.215 3,310 9/18/2024
1.0.214 428 9/17/2024
1.0.213 3,245 9/3/2024
1.0.212 432 9/1/2024
1.0.211 3,045 8/8/2024
1.0.210 7,077 6/12/2024
1.0.209 2,303 5/28/2024
1.0.208 2,776 5/4/2024
1.0.207 1,889 4/23/2024
1.0.206 1,388 4/21/2024
1.0.205 573 4/14/2024
1.0.204 4,206 3/28/2024
1.0.203 537 3/17/2024
1.0.202 2,964 2/23/2024
1.0.201 460 2/23/2024
1.0.200 2,949 2/18/2024
1.0.199 472 2/18/2024
1.0.198 500 2/16/2024
1.0.197 2,033 2/13/2024
1.0.196 1,948 2/8/2024
1.0.195 2,179 2/5/2024
1.0.194 472 2/4/2024
1.0.193 2,424 1/23/2024
1.0.192 453 1/23/2024
1.0.191 1,803 1/12/2024
1.0.190 4,333 1/2/2024
1.0.189 574 12/29/2023
1.0.188 4,193 12/15/2023
1.0.187 748 12/15/2023
1.0.186 832 12/13/2023
1.0.185 515 12/13/2023
1.0.184 9,612 11/12/2023
1.0.183 818 11/10/2023
1.0.182 532 11/10/2023
1.0.181 691 11/9/2023
1.0.180 1,216 11/3/2023
1.0.179 513 11/1/2023
1.0.178 545 11/1/2023
1.0.177 23,472 9/8/2023
1.0.176 797 9/8/2023
1.0.175 924 9/3/2023
1.0.174 1,117 8/21/2023
1.0.173 969 8/15/2023
1.0.172 635 8/14/2023
1.0.171 634 8/14/2023
1.0.170 1,015 8/10/2023
1.0.169 38,250 7/1/2023
1.0.168 702 6/29/2023
1.0.167 14,592 5/27/2023
1.0.166 946 5/21/2023
1.0.165 1,074 5/19/2023
1.0.164 24,454 5/8/2023
1.0.163 2,820 5/1/2023
1.0.162 2,175 4/22/2023
1.0.161 962 4/21/2023
1.0.160 48,964 4/3/2023
1.0.159 2,588 3/27/2023
1.0.158 2,243 3/21/2023
1.0.157 2,948 3/13/2023
1.0.156 18,671 3/6/2023
1.0.155 2,094 2/26/2023
1.0.154 16,365 2/21/2023
1.0.153 1,227 2/20/2023
1.0.152 2,466 2/15/2023
1.0.151 1,248 2/14/2023
1.0.150 32,412 2/9/2023
1.0.149 17,204 2/7/2023
1.0.148 1,809 2/4/2023
1.0.147 21,041 2/2/2023
1.0.146 17,629 1/30/2023
1.0.145 6,525 1/18/2023
1.0.144 43,439 12/30/2022
1.0.143 2,949 12/23/2022
1.0.142 21,754 12/12/2022
1.0.141 24,160 12/4/2022
1.0.140 2,059 12/4/2022
1.0.139 2,735 11/30/2022
1.0.138 2,065 11/29/2022
1.0.137 2,153 11/28/2022
1.0.136 6,003 11/18/2022
1.0.135 28,275 11/11/2022
1.0.134 2,090 11/11/2022
1.0.133 2,147 11/10/2022
1.0.132 2,303 11/5/2022
1.0.131 3,518 11/4/2022
1.0.130 25,416 11/1/2022
1.0.129 26,095 10/16/2022
1.0.128 8,992 9/10/2022
1.0.127 52,193 9/8/2022
1.0.126 2,576 9/8/2022
1.0.125 2,514 9/8/2022
1.0.124 2,533 9/4/2022
1.0.123 2,516 9/4/2022
1.0.122 91,312 8/24/2022
1.0.121 9,087 8/8/2022
1.0.120 2,749 8/8/2022
1.0.119 5,732 7/26/2022
1.0.118 2,914 7/26/2022
1.0.117 54,850 7/19/2022
1.0.116 47,641 7/18/2022
1.0.115 7,865 7/8/2022
1.0.114 6,962 6/18/2022
1.0.113 2,960 6/6/2022
1.0.112 98,335 4/30/2022
1.0.111 3,250 4/20/2022
1.0.110 3,263 4/10/2022
1.0.109 3,216 4/7/2022
1.0.108 3,235 4/7/2022
1.0.107 3,324 4/2/2022
1.0.106 14,459 3/29/2022
1.0.105 3,194 3/27/2022
1.0.104 3,230 3/27/2022
1.0.103 285,457 1/24/2022
1.0.102 161,815 12/29/2021
1.0.101 30,209 12/20/2021
1.0.100 3,540 12/13/2021
1.0.99 30,644 12/7/2021
1.0.98 29,486 12/6/2021
1.0.97 1,910 12/6/2021
1.0.96 3,511 12/2/2021
1.0.95 30,935 11/29/2021
1.0.94 29,744 11/22/2021
1.0.93 2,017 11/17/2021
1.0.92 1,948 11/14/2021
1.0.91 29,981 11/13/2021
1.0.90 2,029 11/11/2021
1.0.89 1,983 11/11/2021
1.0.88 2,037 11/10/2021
1.0.87 2,136 11/9/2021
1.0.86 63,414 11/5/2021
1.0.85 2,142 11/5/2021
1.0.84 2,036 11/4/2021
1.0.83 1,997 11/4/2021
1.0.82 1,935 11/3/2021
1.0.81 2,159 10/30/2021
1.0.80 32,971 10/21/2021
1.0.79 2,540 10/17/2021
1.0.78 62,632 10/14/2021
1.0.77 12,971 10/13/2021
1.0.76 2,075 10/12/2021
1.0.75 33,304 10/11/2021
1.0.74 2,000 10/9/2021
1.0.73 36,728 10/7/2021
1.0.72 38,434 10/7/2021
1.0.71 2,080 10/7/2021
1.0.70 2,041 10/6/2021
1.0.69 2,109 9/28/2021
1.0.68 35,603 9/23/2021
1.0.67 2,278 9/11/2021
1.0.66 1,814 9/10/2021
1.0.65 1,837 9/9/2021
1.0.64 1,799 9/8/2021
1.0.63 1,782 9/8/2021
1.0.62 32,505 9/6/2021
1.0.61 2,004 8/31/2021
1.0.60 1,982 8/30/2021
1.0.59 35,189 7/31/2021
1.0.58 61,304 7/30/2021
1.0.57 2,378 7/26/2021
1.0.56 90,672 7/5/2021
1.0.55 2,359 7/1/2021
1.0.54 64,295 6/4/2021
1.0.53 92,239 4/26/2021
1.0.52 32,896 4/19/2021
1.0.51 150,489 4/7/2021
1.0.50 32,209 4/3/2021
1.0.49 179,016 3/22/2021
1.0.48 113,241 3/4/2021
1.0.47 34,940 2/26/2021
1.0.46 167,700 2/2/2021
1.0.45 58,736 1/26/2021
1.0.44 57,945 1/24/2021
1.0.43 2,581 1/24/2021
1.0.42 2,738 1/23/2021
1.0.41 59,395 1/20/2021
1.0.40 2,656 1/20/2021
1.0.39 30,727 1/18/2021
1.0.38 2,660 1/18/2021
1.0.37 29,825 1/16/2021
1.0.36 118,494 12/16/2020
1.0.35 56,809 12/14/2020
1.0.34 34,830 12/9/2020
1.0.33 4,869 12/6/2020
1.0.32 3,143 12/2/2020
1.0.31 3,017 12/2/2020
1.0.30 30,708 12/1/2020
1.0.29 183,638 11/12/2020
1.0.29-atestpub 1,363 11/11/2020
1.0.28 31,916 10/11/2020
1.0.27 112,189 9/9/2020
1.0.26 30,466 9/3/2020
1.0.25 31,037 8/20/2020
1.0.24 85,398 8/9/2020
1.0.23 31,198 7/28/2020
1.0.22 30,224 7/19/2020
1.0.21 56,976 7/6/2020
1.0.20 85,935 6/6/2020
1.0.19 31,595 6/4/2020
1.0.18 58,509 5/29/2020
1.0.17 58,401 5/21/2020
1.0.16 3,735 5/17/2020
1.0.15 59,023 5/12/2020
1.0.14 114,843 5/4/2020
1.0.13 7,644 4/24/2020
1.0.12 10,127 4/22/2020
1.0.11 3,547 4/22/2020
1.0.10 3,550 4/21/2020
1.0.9 33,135 4/18/2020
1.0.8 31,158 4/16/2020
1.0.7 3,477 4/16/2020
1.0.6 26,378 4/15/2020
1.0.5 29,008 4/11/2020
1.0.4 27,817 4/3/2020
1.0.3 3,157 4/1/2020
1.0.2 14,173 3/27/2020
1.0.1 13,111 3/22/2020
1.0.0 5,502 3/22/2020