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) |
のインスタンス ProtectedSessionStorageを構築します。 |
メソッド
DeleteAsync(String) |
指定したキーに格納されているすべてのデータを非同期的に削除します。 (継承元 ProtectedBrowserStorage) |
GetAsync<TValue>(String) |
指定したデータを非同期的に取得します。
このオーバーロードではデータ保護の目的が指定されていないので、目的は および ストア名から |
GetAsync<TValue>(String, String) |
指定したデータを非同期的に取得します。 (継承元 ProtectedBrowserStorage) |
SetAsync(String, Object) |
指定したデータを非同期に格納します。
このオーバーロードではデータ保護の目的が指定されていないので、目的は および ストア名から |
SetAsync(String, String, Object) |
指定されたデータを非同期に格納します。 (継承元 ProtectedBrowserStorage) |