| File: SecureStorage\SecureStorage.netstandard.cs | Web Access |
| Project: src\src\Essentials\src\Essentials.csproj (Microsoft.Maui.Essentials) |
using System.Threading.Tasks; using Microsoft.Maui.ApplicationModel; namespace Microsoft.Maui.Storage { partial class SecureStorageImplementation : ISecureStorage { Task<string> PlatformGetAsync(string key) => throw ExceptionUtils.NotSupportedOrImplementedException; Task PlatformSetAsync(string key, string data) => throw ExceptionUtils.NotSupportedOrImplementedException; bool PlatformRemove(string key) => throw ExceptionUtils.NotSupportedOrImplementedException; void PlatformRemoveAll() => throw ExceptionUtils.NotSupportedOrImplementedException; } }