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

RaiseAsynchronousOnCommanderStoppedEvent() private méthode

Will raise the event on the calling thread asynchronously. i.e. it will immediatly continue processing even though event handlers have not processed the event yet.
private RaiseAsynchronousOnCommanderStoppedEvent ( CommanderStoppedEventArgs e ) : void
e CommanderStoppedEventArgs
Résultat void
		private void RaiseAsynchronousOnCommanderStoppedEvent(CommanderStoppedEventArgs e)
		{
			_asyncOperation.Post(new SendOrPostCallback(AsynchronousOnCommanderStoppedEventRaised), e);
		}