JsonRazor 2.0.0-rc

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

// Install JsonRazor as a Cake Tool
#tool nuget:?package=JsonRazor&version=2.0.0-rc&prerelease

2.0.0-rc-1:

Changes to existing code:

  • JSymbol has been renamed to TokenType. Also all members are no longer written in all caps. New flag Composite has been introduced, that is either Object or Array.
  • JsonToken.GetFromPath() no longer accepts first char of root type, so all paths like "{obj{property" from now on must be "obj{property", and "[{obj{property" must be "{obj{property" ([ as first char is still valid, but it is considered as type of child, not root prefix).
  • Implicit string casting operator for JsonToken has been removed. It called just Value, so all usages can be replaced with token?.Value;
  • Extension method ToJsonObject(IEnumerable<KeyValuePair<string, string>>) has been removed. If it is necessary, it still can be implemented with simple foreach.
  • Constructors JsonToken(string, string, bool, bool) and JsonValue(string, bool, bool) have been removed. For usages where useQuotes was false or detectType true, it is advised to use JsonToken.FromValue(string, string) and JsonValue.FromValue(string) static methods. When values where created as string, use constructors JsonToken(string, string, ValueType) and JsonValue(string, ValueType) and pass ValueType.String as valueType parameter (if string is not null).
  • ValueBase.SetValue(string, bool, bool) has been removed. SetValue(string) can be used instead, and ValueType will be inferred from string value. SetValue(string, ValueType) can also be used, but valueType will need to be set correctly.
  • JsonToken.Index and IToken.Index will return -1 when not set (previously 0).
  • JsonObject no longer groups objects and arrays by type, rather they are put in document order. Objects() and Arrays() extension methods and object as either IEnumerable<JsonObject> or IEnumerable<JsonArray> still returns tokens only of given type (in document order).
  • Assembly now targets netcoreapp 2.1 and 3.1, instead of netcoreapp 2.0 and 2.1.
  • "null" is no longer treated like runtime null, now "null" is just string. Smh why it was like that.
  • JsonValue.Get() was moved to base class and is accessible in JsonToken. Also its performance has been improved.
  • Integer / fractional json values are now partially validated even when Json.ValueCorrectnessChecks is set to false. For example, OverflowException may be thrown when number exceeds long range. This may require putting ulong values as string.
  • In previous release parsing token by token on nested structures has been removed. It is now added back with an extension - tokens returned by JsonToken.From() have not yet been parsed (except in case when they're empty), and it's now possible to fetch first token (be it object or array) and it is also not parsed. Useful when document has less regular structure.

Fixes:

  • List<List<T>> previously would throw exception upon deserializing.
  • Casting JsonComposite to IEnumerable<JsonObject> or IEnumerable<JsonArray>, or using Objects() or Arrays() extension methods would previously return equivalent of Tokens() due to covariance.
  • Fixed cloning constructors JsonObject(JsonObject) and JsonArray(JsonArray).
  • JsonArray.Find() would previously return nothing when not parsed. Also fixed issues with JsonObject.Find().
  • Fixed issues with GetFromPath(string).
  • Fixed issues with JsonToken.SwapFor(JsonToken). It is now allowed to swap token for token of different type, if parent is JsonArray (Remove() / Add(JsonToken) workaround not required).
  • Fixed issues with JsonToken.Remove().
  • Fixed issues with equality comparisons for all token types & array values.
  • FirstToken property now loads first token if it isn't yet present. Other First... properties may have been fixed as well.
  • Fixed certain failing cases for detecting escaped ".
  • Other found issues have been fixed.
  • Some method documentation has been improved.

New features:

  • IConvertibleToken base interface has been extracted from ICommonToken interface, and ToDecimal() method has been added. IToken now derives from IConvertibleToken, but to access other methods it still needs to be casted to ICommonToken.
  • Enum ValueType has been added, and it is returned from ValueType property in ValueBase class and IConvertibleToken interface. ValueType determines if value of IToken / JsonToken / JsonValue is null, true, false, string, long or double.
  • ValueBase.SetValue(bool) has been added as a shorthand for SetValue(string, ValueType) when ValueType is either True or False.
  • ValueBase.SetValue(object) has been added. object may be null, string, or boxed byte, sbyte, char, short, ushort, int, uint, long, ulong, float, double, decimal or DateTime. Ulong / decimal value is treated as String. Also static methods JsonToken.FromBoxedValue(object) and JsonValue.FromBoxedValue(object) have been added as well, their behaviour is the same.
  • JsonToken.FromBool(string, bool), JsonToken.FromLong(string, long), JsonValue.FromBool(bool), JsonValue.FromLong(long) static methods have been added. If target framework is netcoreapp2.1 or higher, JsonToken.FromDouble(string, double) and JsonValue.FromDouble(double) are available as well.

Performance:

  • CachingSerializer now in certain scenarios uses less memory to maintain the model.
  • Reduced allocations when using JsonObject as either IEnumerable<JsonObject> or IEnumerable<JsonArray>, or when Objects() or Arrays() is called. The same applies for JsonArray, but only in certain scenarions.
  • Reduced allocations in certain cases when cloning constructor JsonObject(JsonObject) or JsonArray(JsonArray) is called.
  • ToBool(), ToLong(), and, if target framework is netcoreapp2.1 or higher, ToDouble(), have all been greatly improved in terms of performance, when used on tokens read from json. Get() performance is also improved for these value types. Obtaining long and double (netcoreapp2.1) values via Value property and parsing is now discouraged due to additional allocation.
  • JsonStream.StreamFile() without skipping executed ~25% faster for given test file.
  • JsonToken.Read(string) was faster ~20-40%. Memory usage during test scenario was ~22% lower.
  • JsonToken.Read(StreamReader) was faster ~30-40%. Memory usage during test scenario was ~26% lower.
  • Deserialization performance improvements (it's using the same improved parsing mechanism under the hood).

Package is in prerelease not because it's not stable, but rather because of planned breaking changes. There'll be around 1 or 2 more releases that will likely change existing APIs. There are some things that would make sense (like replacing JsonValues with JsonTokens for array), some deserialization improvements etc. Next release will probably be labeled as stable.

Product Compatible and additional computed target framework versions.
.NET net5.0 is compatible.  net5.0-windows was computed.  net6.0 was computed.  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. 
.NET Core netcoreapp2.0 was computed.  netcoreapp2.1 is compatible.  netcoreapp2.2 was computed.  netcoreapp3.0 was computed.  netcoreapp3.1 is compatible. 
.NET Standard netstandard2.0 is compatible.  netstandard2.1 was computed. 
.NET Framework net is compatible.  net45 is compatible.  net451 was computed.  net452 was computed.  net46 was computed.  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.
  • .NETCoreApp 2.1

    • No dependencies.
  • .NETCoreApp 3.1

    • No dependencies.
  • .NETFramework 3.5

    • No dependencies.
  • .NETFramework 4.5

    • No dependencies.
  • .NETStandard 2.0

  • net5.0

    • No dependencies.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
2.0.2 1,275 2/6/2022
2.0.1-rc 832 12/11/2021
2.0.0-rc 992 7/4/2021
1.5.1 2,205 9/27/2019
1.5.0 1,350 7/27/2019
1.4.0 1,385 6/5/2019
1.3.1 1,559 1/25/2019
1.3.0 1,501 1/1/2019
1.2.2.8 1,886 7/6/2018
1.2.2.7 1,844 6/25/2018
1.2.2.6 1,703 6/9/2018
1.2.2.5 2,005 3/31/2018
1.2.2.2 1,892 10/7/2017
1.2.2.1 1,787 10/4/2017
1.2.2 1,825 10/1/2017
1.2.0.1 1,768 8/15/2017
1.1.0.10 1,902 6/25/2017

New features, bug fixes and performance improvements. Check changelog on nuget.org for details.