Class LocalStorageService
Inheritance
LocalStorageService
Assembly: Volo.Abp.AspNetCore.Components.Web.dll
Syntax
[Dependency(ReplaceServices = true)]
public class LocalStorageService : ILocalStorageService, ITransientDependency
Constructors
LocalStorageService(IJSRuntime)
Declaration
public LocalStorageService(IJSRuntime jsRuntime)
Parameters
Properties
JsRuntime
Declaration
public IJSRuntime JsRuntime { get; }
Property Value
Methods
GetItemAsync(string)
Declaration
public ValueTask<string> GetItemAsync(string key)
Parameters
Type |
Name |
Description |
string |
key |
|
Returns
RemoveItemAsync(string)
Declaration
public ValueTask RemoveItemAsync(string key)
Parameters
Type |
Name |
Description |
string |
key |
|
Returns
SetItemAsync(string, string)
Declaration
public ValueTask SetItemAsync(string key, string value)
Parameters
Returns
Implements
Extension Methods