Ecng.Serialization 1.0.269

There is a newer version of this package available.
See the version list below for details.
dotnet add package Ecng.Serialization --version 1.0.269
                    
NuGet\Install-Package Ecng.Serialization -Version 1.0.269
                    
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.269" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Ecng.Serialization" Version="1.0.269" />
                    
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.269
                    
#r "nuget: Ecng.Serialization, 1.0.269"
                    
#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.269
                    
#: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.269
                    
Install as a Cake Addin
#tool nuget:?package=Ecng.Serialization&version=1.0.269
                    
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.277 0 11/1/2025
1.0.276 474 10/28/2025
1.0.275 644 10/27/2025
1.0.274 600 10/27/2025
1.0.273 525 10/25/2025
1.0.272 2,255 10/11/2025
1.0.271 1,970 10/3/2025
1.0.270 1,988 9/28/2025
1.0.269 679 9/25/2025
1.0.268 3,365 9/2/2025
1.0.267 2,826 8/30/2025
1.0.266 736 8/30/2025
1.0.265 1,591 8/19/2025
1.0.264 611 8/15/2025
1.0.263 5,185 7/16/2025
1.0.262 1,894 7/13/2025
1.0.261 556 7/13/2025
1.0.260 556 7/12/2025
1.0.259 1,765 7/8/2025
1.0.258 1,315 7/4/2025
1.0.257 611 7/2/2025
1.0.256 5,346 6/16/2025
1.0.255 754 6/9/2025
1.0.254 639 6/8/2025
1.0.253 2,241 5/21/2025
1.0.252 763 5/17/2025
1.0.251 2,292 5/12/2025
1.0.250 663 5/12/2025
1.0.249 591 5/11/2025
1.0.248 564 5/11/2025
1.0.247 521 5/10/2025
1.0.246 527 5/10/2025
1.0.245 1,264 4/17/2025
1.0.244 663 4/15/2025
1.0.243 597 4/12/2025
1.0.242 4,743 3/22/2025
1.0.241 618 3/20/2025
1.0.240 582 3/20/2025
1.0.239 610 3/19/2025
1.0.238 5,467 2/26/2025
1.0.237 652 2/26/2025
1.0.236 9,057 2/5/2025
1.0.235 4,418 1/21/2025
1.0.234 631 1/20/2025
1.0.233 505 1/20/2025
1.0.232 628 1/19/2025
1.0.231 2,225 1/14/2025
1.0.230 995 1/12/2025
1.0.229 579 1/12/2025
1.0.228 585 1/12/2025
1.0.227 737 1/12/2025
1.0.226 1,226 1/10/2025
1.0.225 4,694 12/27/2024
1.0.224 604 12/19/2024
1.0.223 1,080 11/20/2024
1.0.222 4,024 11/18/2024
1.0.221 2,453 11/7/2024
1.0.220 1,001 10/31/2024
1.0.219 898 10/19/2024
1.0.218 3,707 10/12/2024
1.0.217 1,286 10/9/2024
1.0.216 3,707 10/5/2024
1.0.215 5,333 9/18/2024
1.0.214 639 9/17/2024
1.0.213 4,948 9/3/2024
1.0.212 644 9/1/2024
1.0.211 4,437 8/8/2024
1.0.210 11,072 6/12/2024
1.0.209 3,411 5/28/2024
1.0.208 4,239 5/4/2024
1.0.207 2,879 4/23/2024
1.0.206 1,970 4/21/2024
1.0.205 818 4/14/2024
1.0.204 6,174 3/28/2024
1.0.203 752 3/17/2024
1.0.202 4,049 2/23/2024
1.0.201 668 2/23/2024
1.0.200 3,998 2/18/2024
1.0.199 656 2/18/2024
1.0.198 729 2/16/2024
1.0.197 2,757 2/13/2024
1.0.196 2,565 2/8/2024
1.0.195 2,864 2/5/2024
1.0.194 660 2/4/2024
1.0.193 3,072 1/23/2024
1.0.192 653 1/23/2024
1.0.191 2,408 1/12/2024
1.0.190 5,670 1/2/2024
1.0.189 810 12/29/2023
1.0.188 5,390 12/15/2023
1.0.187 1,104 12/15/2023
1.0.186 1,164 12/13/2023
1.0.185 730 12/13/2023
1.0.184 12,283 11/12/2023
1.0.183 1,194 11/10/2023
1.0.182 755 11/10/2023
1.0.181 1,002 11/9/2023
1.0.180 1,811 11/3/2023
1.0.179 735 11/1/2023
1.0.178 792 11/1/2023
1.0.177 25,964 9/8/2023
1.0.176 1,151 9/8/2023
1.0.175 1,317 9/3/2023
1.0.174 1,590 8/21/2023
1.0.173 1,285 8/15/2023
1.0.172 855 8/14/2023
1.0.171 839 8/14/2023
1.0.170 1,442 8/10/2023
1.0.169 40,823 7/1/2023
1.0.168 944 6/29/2023
1.0.167 16,302 5/27/2023
1.0.166 1,253 5/21/2023
1.0.165 1,398 5/19/2023
1.0.164 26,680 5/8/2023
1.0.163 3,602 5/1/2023
1.0.162 2,654 4/22/2023
1.0.161 1,213 4/21/2023
1.0.160 51,820 4/3/2023
1.0.159 3,137 3/27/2023
1.0.158 2,637 3/21/2023
1.0.157 3,423 3/13/2023
1.0.156 19,994 3/6/2023
1.0.155 2,374 2/26/2023
1.0.154 17,134 2/21/2023
1.0.153 1,435 2/20/2023
1.0.152 2,829 2/15/2023
1.0.151 1,434 2/14/2023
1.0.150 33,833 2/9/2023
1.0.149 17,957 2/7/2023
1.0.148 2,068 2/4/2023
1.0.147 22,150 2/2/2023
1.0.146 18,338 1/30/2023
1.0.145 7,361 1/18/2023
1.0.144 45,757 12/30/2022
1.0.143 3,319 12/23/2022
1.0.142 22,775 12/12/2022
1.0.141 25,362 12/4/2022
1.0.140 2,295 12/4/2022
1.0.139 3,033 11/30/2022
1.0.138 2,293 11/29/2022
1.0.137 2,390 11/28/2022
1.0.136 6,571 11/18/2022
1.0.135 29,512 11/11/2022
1.0.134 2,291 11/11/2022
1.0.133 2,352 11/10/2022
1.0.132 2,524 11/5/2022
1.0.131 3,860 11/4/2022
1.0.130 26,413 11/1/2022
1.0.129 26,879 10/16/2022
1.0.128 9,594 9/10/2022
1.0.127 53,470 9/8/2022
1.0.126 2,779 9/8/2022
1.0.125 2,733 9/8/2022
1.0.124 2,721 9/4/2022
1.0.123 2,717 9/4/2022
1.0.122 93,074 8/24/2022
1.0.121 9,694 8/8/2022
1.0.120 2,970 8/8/2022
1.0.119 6,085 7/26/2022
1.0.118 3,148 7/26/2022
1.0.117 56,229 7/19/2022
1.0.116 48,565 7/18/2022
1.0.115 8,372 7/8/2022
1.0.114 7,415 6/18/2022
1.0.113 3,148 6/6/2022
1.0.112 100,383 4/30/2022
1.0.111 3,478 4/20/2022
1.0.110 3,452 4/10/2022
1.0.109 3,402 4/7/2022
1.0.108 3,399 4/7/2022
1.0.107 3,523 4/2/2022
1.0.106 15,019 3/29/2022
1.0.105 3,402 3/27/2022
1.0.104 3,427 3/27/2022
1.0.103 292,455 1/24/2022
1.0.102 165,067 12/29/2021
1.0.101 31,246 12/20/2021
1.0.100 3,873 12/13/2021
1.0.99 31,657 12/7/2021
1.0.98 30,422 12/6/2021
1.0.97 2,121 12/6/2021
1.0.96 3,840 12/2/2021
1.0.95 31,964 11/29/2021
1.0.94 30,776 11/22/2021
1.0.93 2,217 11/17/2021
1.0.92 2,153 11/14/2021
1.0.91 30,929 11/13/2021
1.0.90 2,224 11/11/2021
1.0.89 2,187 11/11/2021
1.0.88 2,244 11/10/2021
1.0.87 2,339 11/9/2021
1.0.86 65,227 11/5/2021
1.0.85 2,342 11/5/2021
1.0.84 2,240 11/4/2021
1.0.83 2,192 11/4/2021
1.0.82 2,136 11/3/2021
1.0.81 2,364 10/30/2021
1.0.80 33,793 10/21/2021
1.0.79 2,769 10/17/2021
1.0.78 64,178 10/14/2021
1.0.77 13,657 10/13/2021
1.0.76 2,298 10/12/2021
1.0.75 34,304 10/11/2021
1.0.74 2,198 10/9/2021
1.0.73 37,635 10/7/2021
1.0.72 39,609 10/7/2021
1.0.71 2,285 10/7/2021
1.0.70 2,235 10/6/2021
1.0.69 2,318 9/28/2021
1.0.68 36,625 9/23/2021
1.0.67 2,503 9/11/2021
1.0.66 2,001 9/10/2021
1.0.65 2,019 9/9/2021
1.0.64 1,959 9/8/2021
1.0.63 1,967 9/8/2021
1.0.62 33,365 9/6/2021
1.0.61 2,177 8/31/2021
1.0.60 2,156 8/30/2021
1.0.59 36,110 7/31/2021
1.0.58 62,741 7/30/2021
1.0.57 2,585 7/26/2021
1.0.56 92,813 7/5/2021
1.0.55 2,547 7/1/2021
1.0.54 65,849 6/4/2021
1.0.53 94,388 4/26/2021
1.0.52 33,734 4/19/2021
1.0.51 154,046 4/7/2021
1.0.50 33,067 4/3/2021
1.0.49 183,164 3/22/2021
1.0.48 116,095 3/4/2021
1.0.47 36,048 2/26/2021
1.0.46 171,711 2/2/2021
1.0.45 60,227 1/26/2021
1.0.44 59,499 1/24/2021
1.0.43 2,801 1/24/2021
1.0.42 2,956 1/23/2021
1.0.41 60,936 1/20/2021
1.0.40 2,876 1/20/2021
1.0.39 31,585 1/18/2021
1.0.38 2,869 1/18/2021
1.0.37 30,613 1/16/2021
1.0.36 121,784 12/16/2020
1.0.35 58,451 12/14/2020
1.0.34 36,032 12/9/2020
1.0.33 5,177 12/6/2020
1.0.32 3,362 12/2/2020
1.0.31 3,246 12/2/2020
1.0.30 31,662 12/1/2020
1.0.29 189,091 11/12/2020
1.0.29-atestpub 1,568 11/11/2020
1.0.28 32,790 10/11/2020
1.0.27 114,790 9/9/2020
1.0.26 31,279 9/3/2020
1.0.25 31,852 8/20/2020
1.0.24 87,422 8/9/2020
1.0.23 32,015 7/28/2020
1.0.22 31,075 7/19/2020
1.0.21 58,367 7/6/2020
1.0.20 87,728 6/6/2020
1.0.19 32,411 6/4/2020
1.0.18 59,791 5/29/2020
1.0.17 59,694 5/21/2020
1.0.16 3,946 5/17/2020
1.0.15 60,439 5/12/2020
1.0.14 117,589 5/4/2020
1.0.13 8,051 4/24/2020
1.0.12 10,626 4/22/2020
1.0.11 3,746 4/22/2020
1.0.10 3,766 4/21/2020
1.0.9 33,997 4/18/2020
1.0.8 31,929 4/16/2020
1.0.7 3,696 4/16/2020
1.0.6 27,110 4/15/2020
1.0.5 29,825 4/11/2020
1.0.4 28,625 4/3/2020
1.0.3 3,360 4/1/2020
1.0.2 14,986 3/27/2020
1.0.1 13,955 3/22/2020
1.0.0 5,905 3/22/2020