File: WebView\WebNavigatedEventArgs.cs
Web Access
Project: src\src\Controls\src\Core\Controls.Core.csproj (Microsoft.Maui.Controls)
#nullable disable
namespace Microsoft.Maui.Controls
{
	/// <include file="../../docs/Microsoft.Maui.Controls/WebNavigatedEventArgs.xml" path="Type[@FullName='Microsoft.Maui.Controls.WebNavigatedEventArgs']/Docs/*" />
	public class WebNavigatedEventArgs : WebNavigationEventArgs
	{
		/// <include file="../../docs/Microsoft.Maui.Controls/WebNavigatedEventArgs.xml" path="//Member[@MemberName='.ctor']/Docs/*" />
		public WebNavigatedEventArgs(WebNavigationEvent navigationEvent, WebViewSource source, string url, WebNavigationResult result) : base(navigationEvent, source, url)
		{
			Result = result;
		}
 
		/// <include file="../../docs/Microsoft.Maui.Controls/WebNavigatedEventArgs.xml" path="//Member[@MemberName='Result']/Docs/*" />
		public WebNavigationResult Result { get; private set; }
	}
}