PCSX2Bonus.Gamepad.PollAsync C# (CSharp) Method

PollAsync() public method

public PollAsync ( ) : void
return void
        public void PollAsync()
        {
            this.cts = new CancellationTokenSource();
            this.pollingTask = new Task(new System.Action(this.BeginPoll), this.cts.Token);
            this.pollingTask.Start();
        }