localstorage
localstorage copied to clipboard
LocalStorage for .NET - A simple and lightweight tool for persisting data in dotnet (core) apps.
I have some problem When multiple users will encounter this problem. My Controller : When the user enters for the first time public class ShoppingCart { public string ProductID {...
Hello, I have had several problems and I would like help to solve them 1. When I enable encryption, and I want to do a normal store, it shows me...
Hello. This is a good solution, but I'm afraid of multiple users accessing the file. I'm using localstorage to save bearer tokens and other information about the logged in user....
Bumps [Newtonsoft.Json](https://github.com/JamesNK/Newtonsoft.Json) from 12.0.3 to 13.0.1. Release notes Sourced from Newtonsoft.Json's releases. 13.0.1 New feature - Add JsonSelectSettings with configuration for a regex timeout Change - Remove portable assemblies from...
Hello, If I activate the encryption, I get this error : "The input is not a valid Base-64 string because it contains a non-Base-64 character, more than two padding characters,...
JsonReaderException: Additional text encountered after finished reading JSON content: c. Path '', line 1, position 2. using (var storage = new LocalStorage()) it worked fine but when used .Clear() it...
Hello ``` { bool initStart = true; bool startExist = store.Exists("start"); if (!startExist) { initStart = true; store.Store("start", true); } if (initStart) { store.Store("start", true); store.Store("data", new SingleUserData { answers...
Hi i stumbled uppon your localstorage looks a great solution I just need to pass a cased Id from one controller to another was trying to use session in asp.net...