Ecng.Serialization 1.0.268

There is a newer version of this package available.
See the version list below for details.
dotnet add package Ecng.Serialization --version 1.0.268
                    
NuGet\Install-Package Ecng.Serialization -Version 1.0.268
                    
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.268" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Ecng.Serialization" Version="1.0.268" />
                    
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.268
                    
#r "nuget: Ecng.Serialization, 1.0.268"
                    
#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.268
                    
#: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.268
                    
Install as a Cake Addin
#tool nuget:?package=Ecng.Serialization&version=1.0.268
                    
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.269 164 9/25/2025
1.0.268 1,821 9/2/2025
1.0.267 1,936 8/30/2025
1.0.266 521 8/30/2025
1.0.265 1,047 8/19/2025
1.0.264 466 8/15/2025
1.0.263 3,630 7/16/2025
1.0.262 1,350 7/13/2025
1.0.261 393 7/13/2025
1.0.260 370 7/12/2025
1.0.259 1,209 7/8/2025
1.0.258 893 7/4/2025
1.0.257 429 7/2/2025
1.0.256 3,554 6/16/2025
1.0.255 578 6/9/2025
1.0.254 474 6/8/2025
1.0.253 1,520 5/21/2025
1.0.252 516 5/17/2025
1.0.251 1,565 5/12/2025
1.0.250 469 5/12/2025
1.0.249 413 5/11/2025
1.0.248 405 5/11/2025
1.0.247 337 5/10/2025
1.0.246 336 5/10/2025
1.0.245 878 4/17/2025
1.0.244 485 4/15/2025
1.0.243 413 4/12/2025
1.0.242 3,294 3/22/2025
1.0.241 433 3/20/2025
1.0.240 416 3/20/2025
1.0.239 421 3/19/2025
1.0.238 3,849 2/26/2025
1.0.237 477 2/26/2025
1.0.236 6,327 2/5/2025
1.0.235 3,030 1/21/2025
1.0.234 431 1/20/2025
1.0.233 370 1/20/2025
1.0.232 449 1/19/2025
1.0.231 1,534 1/14/2025
1.0.230 658 1/12/2025
1.0.229 394 1/12/2025
1.0.228 387 1/12/2025
1.0.227 523 1/12/2025
1.0.226 792 1/10/2025
1.0.225 3,455 12/27/2024
1.0.224 446 12/19/2024
1.0.223 925 11/20/2024
1.0.222 3,098 11/18/2024
1.0.221 1,699 11/7/2024
1.0.220 675 10/31/2024
1.0.219 665 10/19/2024
1.0.218 2,721 10/12/2024
1.0.217 926 10/9/2024
1.0.216 2,636 10/5/2024
1.0.215 3,791 9/18/2024
1.0.214 504 9/17/2024
1.0.213 3,691 9/3/2024
1.0.212 496 9/1/2024
1.0.211 3,371 8/8/2024
1.0.210 8,020 6/12/2024
1.0.209 2,519 5/28/2024
1.0.208 3,139 5/4/2024
1.0.207 2,130 4/23/2024
1.0.206 1,540 4/21/2024
1.0.205 631 4/14/2024
1.0.204 4,607 3/28/2024
1.0.203 592 3/17/2024
1.0.202 3,182 2/23/2024
1.0.201 520 2/23/2024
1.0.200 3,179 2/18/2024
1.0.199 533 2/18/2024
1.0.198 563 2/16/2024
1.0.197 2,186 2/13/2024
1.0.196 2,120 2/8/2024
1.0.195 2,370 2/5/2024
1.0.194 523 2/4/2024
1.0.193 2,621 1/23/2024
1.0.192 504 1/23/2024
1.0.191 1,949 1/12/2024
1.0.190 4,581 1/2/2024
1.0.189 639 12/29/2023
1.0.188 4,421 12/15/2023
1.0.187 829 12/15/2023
1.0.186 912 12/13/2023
1.0.185 569 12/13/2023
1.0.184 10,131 11/12/2023
1.0.183 919 11/10/2023
1.0.182 603 11/10/2023
1.0.181 760 11/9/2023
1.0.180 1,364 11/3/2023
1.0.179 588 11/1/2023
1.0.178 607 11/1/2023
1.0.177 23,953 9/8/2023
1.0.176 873 9/8/2023
1.0.175 1,028 9/3/2023
1.0.174 1,236 8/21/2023
1.0.173 1,049 8/15/2023
1.0.172 711 8/14/2023
1.0.171 709 8/14/2023
1.0.170 1,094 8/10/2023
1.0.169 38,774 7/1/2023
1.0.168 782 6/29/2023
1.0.167 14,838 5/27/2023
1.0.166 1,014 5/21/2023
1.0.165 1,164 5/19/2023
1.0.164 24,761 5/8/2023
1.0.163 2,965 5/1/2023
1.0.162 2,246 4/22/2023
1.0.161 1,040 4/21/2023
1.0.160 49,518 4/3/2023
1.0.159 2,698 3/27/2023
1.0.158 2,322 3/21/2023
1.0.157 3,086 3/13/2023
1.0.156 18,910 3/6/2023
1.0.155 2,168 2/26/2023
1.0.154 16,587 2/21/2023
1.0.153 1,307 2/20/2023
1.0.152 2,555 2/15/2023
1.0.151 1,316 2/14/2023
1.0.150 32,747 2/9/2023
1.0.149 17,391 2/7/2023
1.0.148 1,908 2/4/2023
1.0.147 21,325 2/2/2023
1.0.146 17,831 1/30/2023
1.0.145 6,672 1/18/2023
1.0.144 43,883 12/30/2022
1.0.143 3,045 12/23/2022
1.0.142 22,020 12/12/2022
1.0.141 24,422 12/4/2022
1.0.140 2,136 12/4/2022
1.0.139 2,837 11/30/2022
1.0.138 2,134 11/29/2022
1.0.137 2,222 11/28/2022
1.0.136 6,130 11/18/2022
1.0.135 28,519 11/11/2022
1.0.134 2,163 11/11/2022
1.0.133 2,209 11/10/2022
1.0.132 2,367 11/5/2022
1.0.131 3,595 11/4/2022
1.0.130 25,661 11/1/2022
1.0.129 26,337 10/16/2022
1.0.128 9,134 9/10/2022
1.0.127 52,488 9/8/2022
1.0.126 2,642 9/8/2022
1.0.125 2,598 9/8/2022
1.0.124 2,606 9/4/2022
1.0.123 2,590 9/4/2022
1.0.122 91,822 8/24/2022
1.0.121 9,245 8/8/2022
1.0.120 2,813 8/8/2022
1.0.119 5,795 7/26/2022
1.0.118 2,993 7/26/2022
1.0.117 55,187 7/19/2022
1.0.116 47,903 7/18/2022
1.0.115 8,002 7/8/2022
1.0.114 7,077 6/18/2022
1.0.113 3,037 6/6/2022
1.0.112 98,818 4/30/2022
1.0.111 3,325 4/20/2022
1.0.110 3,341 4/10/2022
1.0.109 3,293 4/7/2022
1.0.108 3,299 4/7/2022
1.0.107 3,398 4/2/2022
1.0.106 14,595 3/29/2022
1.0.105 3,275 3/27/2022
1.0.104 3,308 3/27/2022
1.0.103 287,099 1/24/2022
1.0.102 162,572 12/29/2021
1.0.101 30,510 12/20/2021
1.0.100 3,657 12/13/2021
1.0.99 30,930 12/7/2021
1.0.98 29,744 12/6/2021
1.0.97 1,982 12/6/2021
1.0.96 3,616 12/2/2021
1.0.95 31,193 11/29/2021
1.0.94 30,020 11/22/2021
1.0.93 2,092 11/17/2021
1.0.92 2,026 11/14/2021
1.0.91 30,241 11/13/2021
1.0.90 2,103 11/11/2021
1.0.89 2,056 11/11/2021
1.0.88 2,118 11/10/2021
1.0.87 2,213 11/9/2021
1.0.86 63,933 11/5/2021
1.0.85 2,219 11/5/2021
1.0.84 2,105 11/4/2021
1.0.83 2,084 11/4/2021
1.0.82 2,008 11/3/2021
1.0.81 2,236 10/30/2021
1.0.80 33,183 10/21/2021
1.0.79 2,622 10/17/2021
1.0.78 63,131 10/14/2021
1.0.77 13,169 10/13/2021
1.0.76 2,147 10/12/2021
1.0.75 33,579 10/11/2021
1.0.74 2,081 10/9/2021
1.0.73 36,996 10/7/2021
1.0.72 38,731 10/7/2021
1.0.71 2,157 10/7/2021
1.0.70 2,119 10/6/2021
1.0.69 2,189 9/28/2021
1.0.68 35,873 9/23/2021
1.0.67 2,365 9/11/2021
1.0.66 1,880 9/10/2021
1.0.65 1,906 9/9/2021
1.0.64 1,861 9/8/2021
1.0.63 1,851 9/8/2021
1.0.62 32,740 9/6/2021
1.0.61 2,076 8/31/2021
1.0.60 2,059 8/30/2021
1.0.59 35,457 7/31/2021
1.0.58 61,694 7/30/2021
1.0.57 2,457 7/26/2021
1.0.56 91,271 7/5/2021
1.0.55 2,435 7/1/2021
1.0.54 64,728 6/4/2021
1.0.53 92,827 4/26/2021
1.0.52 33,149 4/19/2021
1.0.51 151,468 4/7/2021
1.0.50 32,433 4/3/2021
1.0.49 180,084 3/22/2021
1.0.48 113,991 3/4/2021
1.0.47 35,240 2/26/2021
1.0.46 168,751 2/2/2021
1.0.45 59,172 1/26/2021
1.0.44 58,388 1/24/2021
1.0.43 2,672 1/24/2021
1.0.42 2,826 1/23/2021
1.0.41 59,836 1/20/2021
1.0.40 2,741 1/20/2021
1.0.39 30,999 1/18/2021
1.0.38 2,759 1/18/2021
1.0.37 30,067 1/16/2021
1.0.36 119,389 12/16/2020
1.0.35 57,272 12/14/2020
1.0.34 35,166 12/9/2020
1.0.33 4,978 12/6/2020
1.0.32 3,228 12/2/2020
1.0.31 3,109 12/2/2020
1.0.30 30,945 12/1/2020
1.0.29 185,119 11/12/2020
1.0.29-atestpub 1,440 11/11/2020
1.0.28 32,206 10/11/2020
1.0.27 112,873 9/9/2020
1.0.26 30,702 9/3/2020
1.0.25 31,309 8/20/2020
1.0.24 86,005 8/9/2020
1.0.23 31,433 7/28/2020
1.0.22 30,500 7/19/2020
1.0.21 57,415 7/6/2020
1.0.20 86,416 6/6/2020
1.0.19 31,846 6/4/2020
1.0.18 58,874 5/29/2020
1.0.17 58,791 5/21/2020
1.0.16 3,820 5/17/2020
1.0.15 59,466 5/12/2020
1.0.14 115,587 5/4/2020
1.0.13 7,795 4/24/2020
1.0.12 10,280 4/22/2020
1.0.11 3,635 4/22/2020
1.0.10 3,641 4/21/2020
1.0.9 33,375 4/18/2020
1.0.8 31,409 4/16/2020
1.0.7 3,561 4/16/2020
1.0.6 26,618 4/15/2020
1.0.5 29,270 4/11/2020
1.0.4 28,062 4/3/2020
1.0.3 3,231 4/1/2020
1.0.2 14,433 3/27/2020
1.0.1 13,356 3/22/2020
1.0.0 5,620 3/22/2020