Windows.System.Threading.ThreadPoolTimer.CreateTimer C# (CSharp) Method

CreateTimer() public static method

public static CreateTimer ( TimeElapsedHandler handler, TimeSpan delay ) : ThreadPoolTimer
handler TimeElapsedHandler
delay TimeSpan
return ThreadPoolTimer
		public static ThreadPoolTimer CreateTimer (TimeElapsedHandler handler, TimeSpan delay)
		{
			if (handler == null)
				throw new ArgumentException ("handler");

			return new ThreadPoolTimer (handler, delay, isPeriodic: false);
		}
	}