Example #1
0
 private void ConnectionCompleted()
 {
     _mainPresenter = new MainPresenter(new MainControl(), ShowVideoControl);
     LoadMainView(_mainPresenter.GetView());
     _mainPresenter.Run();
 }
Example #2
0
        public async Task Run(CancellationToken cancellationToken)
        {
            cancellationToken.ThrowIfCancellationRequested();

            await mainPresenter.Run(cancellationToken);
        }