| File: AppActions\AppActions.netstandard.tvos.watchos.macos.tizen.cs | Web Access |
| Project: src\src\Essentials\src\Essentials.csproj (Microsoft.Maui.Essentials) |
using System; using System.Collections.Generic; using System.Threading.Tasks; namespace Microsoft.Maui.ApplicationModel { partial class AppActionsImplementation : IAppActions { public bool IsSupported => throw ExceptionUtils.NotSupportedOrImplementedException; public Task<IEnumerable<AppAction>> GetAsync() => throw ExceptionUtils.NotSupportedOrImplementedException; public Task SetAsync(IEnumerable<AppAction> actions) => throw ExceptionUtils.NotSupportedOrImplementedException; #pragma warning disable CS0067 // The event is never used public event EventHandler<AppActionEventArgs> AppActionActivated; #pragma warning restore CS0067 // The event is never used } }