BaconographyW8.PlatformServices.SystemServices.RestartTimer C# (CSharp) Method

RestartTimer() public method

public RestartTimer ( object tickHandle ) : void
tickHandle object
return void
        public void RestartTimer(object tickHandle)
        {
            if (tickHandle is DispatcherTimer)
            {
                ((DispatcherTimer)tickHandle).Start();
            }
            else if (tickHandle is ThreadPoolTimer)
            {
                throw new NotImplementedException();
            }
        }