File: Core\IWebViewDelegate.cs
Web Access
Project: src\src\Core\src\Core.csproj (Microsoft.Maui)
namespace Microsoft.Maui
{
	public interface IWebViewDelegate
	{
		void LoadHtml(string? html, string? baseUrl);
		void LoadUrl(string? url);
	}
}