summaryrefslogtreecommitdiff
path: root/Xamarin.Forms.Core/NavigationEventArgs.cs
blob: 0ccd4343cfeca940e783cee76d757622f8696021 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
using System;

namespace Xamarin.Forms
{
	public class NavigationEventArgs : EventArgs
	{
		public NavigationEventArgs(Page page)
		{
			if (page == null)
				throw new ArgumentNullException("page");

			Page = page;
		}

		public Page Page { get; private set; }
	}
}