Sakura.AspNetCore.Mvc.Internal.PagerList.PagerList C# (CSharp) Method

PagerList() public method

Initialize a new pager.
public PagerList ( [ items ) : System
items [ All items included in the pager.
return System
		public PagerList([NotNull] [ItemNotNull] IEnumerable<PagerItem> items)
		{
			if (items == null)
			{
				throw new ArgumentNullException(nameof(items));
			}

			Items = items;
		}
PagerList