| File: Launcher\Launcher.netstandard.watchos.cs | Web Access |
| Project: src\src\Essentials\src\Essentials.csproj (Microsoft.Maui.Essentials) |
using System; using System.Threading.Tasks; namespace Microsoft.Maui.ApplicationModel { partial class LauncherImplementation { Task<bool> PlatformCanOpenAsync(Uri uri) => throw ExceptionUtils.NotSupportedOrImplementedException; Task<bool> PlatformOpenAsync(Uri uri) => throw ExceptionUtils.NotSupportedOrImplementedException; Task<bool> PlatformOpenAsync(OpenFileRequest request) => throw ExceptionUtils.NotSupportedOrImplementedException; Task<bool> PlatformTryOpenAsync(Uri uri) => throw ExceptionUtils.NotSupportedOrImplementedException; } }