Talifun.Commander.Command.CommanderManager.RaiseCrossThreadOnCommanderStoppedEvent C# (CSharp) Méthode

RaiseCrossThreadOnCommanderStoppedEvent() private méthode

Will raise the event on the calling thread synchronously. i.e. it will wait until all event handlers have processed the event.
private RaiseCrossThreadOnCommanderStoppedEvent ( CommanderStoppedEventArgs e ) : void
e CommanderStoppedEventArgs
Résultat void
		private void RaiseCrossThreadOnCommanderStoppedEvent(CommanderStoppedEventArgs e)
		{
			_asyncOperation.SynchronizationContext.Send(new SendOrPostCallback(AsynchronousOnCommanderStoppedEventRaised), e);
		}