BeatMachine.RunMediaPlayer.RunMediaPlayer C# (CSharp) Метод

RunMediaPlayer() публичный Метод

public RunMediaPlayer ( System.TimeSpan dispatchInterval ) : System
dispatchInterval System.TimeSpan
Результат System
        public RunMediaPlayer(TimeSpan dispatchInterval)
        {
            this.frameworkDispatcherTimer = new DispatcherTimer();
            this.frameworkDispatcherTimer.Tick += new EventHandler(frameworkDispatcherTimer_Tick);
            this.frameworkDispatcherTimer.Interval = dispatchInterval;
        }