ProtectedSessionStorage 클래스
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
브라우저의 'sessionStorage' 컬렉션에 데이터를 저장하고 검색하는 메커니즘을 제공합니다.
이 데이터는 현재 브라우저 탭으로 범위가 지정됩니다. 사용자가 브라우저 탭을 닫거나 브라우저 자체를 닫으면 데이터가 삭제됩니다.
https://developer.mozilla.org/en-US/docs/Web/API/Window/sessionStorage를 참조하세요.
public ref class ProtectedSessionStorage sealed : Microsoft::AspNetCore::Components::Server::ProtectedBrowserStorage::ProtectedBrowserStorage
public sealed class ProtectedSessionStorage : Microsoft.AspNetCore.Components.Server.ProtectedBrowserStorage.ProtectedBrowserStorage
type ProtectedSessionStorage = class
inherit ProtectedBrowserStorage
Public NotInheritable Class ProtectedSessionStorage
Inherits ProtectedBrowserStorage
- 상속
생성자
ProtectedSessionStorage(IJSRuntime, IDataProtectionProvider) |
의 instance 생성합니다ProtectedSessionStorage. |
메서드
DeleteAsync(String) |
지정된 키에 대해 저장된 모든 데이터를 비동기적으로 삭제합니다. (다음에서 상속됨 ProtectedBrowserStorage) |
GetAsync<TValue>(String) |
지정된 데이터를 비동기적으로 검색합니다.
이 오버로드를 사용하여 데이터 보호 용도를 지정하지 않으므로 용도는 및 저장소 이름에서 |
GetAsync<TValue>(String, String) |
지정된 데이터를 비동기적으로 검색합니다. (다음에서 상속됨 ProtectedBrowserStorage) |
SetAsync(String, Object) |
지정된 데이터를 비동기적으로 저장합니다.
이 오버로드를 사용하여 데이터 보호 용도를 지정하지 않으므로 용도는 및 저장소 이름에서 |
SetAsync(String, String, Object) |
제공된 데이터를 비동기적으로 저장합니다. (다음에서 상속됨 ProtectedBrowserStorage) |