Skip to content
Prev Previous commit
Next Next commit
Update Microsoft.Toolkit.Uwp/Helpers/ObjectStorage/BaseObjectStorageH…
…elper.cs

Co-authored-by: Michael Hawker MSFT (XAML Llama) <24302614+michael-hawker@users.noreply.github.com>
  • Loading branch information
Rosuavio and michael-hawker authored Jan 5, 2021
commit e05263c619e871ee1d288d2ab6557a94a7c91073
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@ public abstract class BaseObjectStorageHelper : IObjectStorageHelper
/// Initializes a new instance of the <see cref="BaseObjectStorageHelper"/> class,
/// which can read and write data using the provided <see cref="IObjectSerializer"/>;
/// if none is provided, a default Json serializer will be used (based on <see cref="DataContractSerializer"/>).
/// In 6.1 and older the defualt Serizlizer was based on Newtownsoft Json and the new default Serizlizer may behave diffrenly.
/// To implement a <see cref="IObjectSerializer"/> based on Newtonsoft Json or System.Text.Json see https://aka.ms/wct/storagehelper-migration
/// In 6.1 and older the default Serializer was based on Newtonsoft.Json and the new default Serializer may behave differently.
/// To implement a <see cref="IObjectSerializer"/> based on Newtonsoft.Json or System.Text.Json see https://aka.ms/wct/storagehelper-migration
/// </summary>
/// <param name="objectSerializer">The serializer to use.</param>
public BaseObjectStorageHelper(IObjectSerializer objectSerializer = null)
Expand Down