| File: IWebViewController.cs | Web Access |
| Project: src\src\Controls\src\Core\Controls.Core.csproj (Microsoft.Maui.Controls) |
#nullable disable using System; using System.Threading.Tasks; using Microsoft.Maui.Controls.Internals; namespace Microsoft.Maui.Controls { public interface IWebViewController : IViewController { bool CanGoBack { get; set; } bool CanGoForward { get; set; } event EventHandler<EvalRequested> EvalRequested; event EvaluateJavaScriptDelegate EvaluateJavaScriptRequested; event EventHandler GoBackRequested; event EventHandler GoForwardRequested; event EventHandler ReloadRequested; void SendNavigated(WebNavigatedEventArgs args); void SendNavigating(WebNavigatingEventArgs args); } }