| File: Handlers\WebView\WebViewHandler.Standard.cs | Web Access |
| Project: src\src\Core\src\Core.csproj (Microsoft.Maui) |
using System; namespace Microsoft.Maui.Handlers { public partial class WebViewHandler : ViewHandler<IWebView, object> { protected override object CreatePlatformView() => throw new NotImplementedException(); public static void MapSource(IWebViewHandler handler, IWebView webView) { } public static void MapUserAgent(IWebViewHandler handler, IWebView webView) { } public static void MapGoBack(IWebViewHandler handler, IWebView webView, object? arg) { } public static void MapGoForward(IWebViewHandler handler, IWebView webView, object? arg) { } public static void MapReload(IWebViewHandler handler, IWebView webView, object? arg) { } public static void MapEval(IWebViewHandler handler, IWebView webView, object? arg) { } public static void MapEvaluateJavaScriptAsync(IWebViewHandler handler, IWebView webView, object? arg) { } } }