Interface ILocalStorageService
Assembly: Volo.Abp.AspNetCore.Components.Web.dll
Syntax
public interface ILocalStorageService
Methods
GetItemAsync(string)
Declaration
ValueTask<string> GetItemAsync(string key)
Parameters
Type |
Name |
Description |
string |
key |
|
Returns
RemoveItemAsync(string)
Declaration
ValueTask RemoveItemAsync(string key)
Parameters
Type |
Name |
Description |
string |
key |
|
Returns
SetItemAsync(string, string)
Declaration
ValueTask SetItemAsync(string key, string value)
Parameters
Returns
Extension Methods