summaryrefslogtreecommitdiff
path: root/Xamarin.Forms.Core/WebNavigatedEventArgs.cs
blob: 29bc3d11c0e4b4587220d30a8b05ff0ff06e9eb6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
namespace Xamarin.Forms
{
	public class WebNavigatedEventArgs : WebNavigationEventArgs
	{
		public WebNavigatedEventArgs(WebNavigationEvent navigationEvent, WebViewSource source, string url, WebNavigationResult result) : base(navigationEvent, source, url)
		{
			Result = result;
		}

		public WebNavigationResult Result { get; private set; }
	}
}