Business.PlayerBusiness.SelectNextVideoAsync C# (CSharp) Метод

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

Selects which video will be played next.
public SelectNextVideoAsync ( int queuePos, bool maintainCurrent ) : Task
queuePos int The video position to select. 0 for current, 1 for next.
maintainCurrent bool True to keep the next video and only select alternate options, false to change next video.
Результат Task
        public async Task<bool> SelectNextVideoAsync(int queuePos, bool maintainCurrent) {
            return await SelectNextVideoAsync(queuePos, maintainCurrent, 0).ConfigureAwait(false);
        }

Same methods

PlayerBusiness::SelectNextVideoAsync ( int queuePos, bool maintainCurrent, int attempts ) : Task