1 implementation of BeginInvoke
System.Windows.Forms (1)
winforms\Managed\System\WinForms\Control.cs (1)
5592public IAsyncResult BeginInvoke(Delegate method, params Object[] args) {
26 references to BeginInvoke
System (9)
compmod\system\componentmodel\ISynchronizeInvoke.cs (1)
31/// calling <see cref='System.ComponentModel.ISynchronizeInvoke.BeginInvoke'/> completes, and then returns
services\io\system\io\FileSystemWatcher.cs (5)
820this.SynchronizingObject.BeginInvoke(changedHandler, new object[]{this, e}); 837this.SynchronizingObject.BeginInvoke(createdHandler, new object[]{this, e}); 854this.SynchronizingObject.BeginInvoke(deletedHandler, new object[]{this, e}); 871this.SynchronizingObject.BeginInvoke(errorHandler, new object[]{this, e}); 917this.SynchronizingObject.BeginInvoke(renamedHandler, new object[]{this, e});
services\monitoring\system\diagnosticts\EventLogInternal.cs (1)
742this.SynchronizingObject.BeginInvoke(this.onEntryWrittenHandler, new object[]{this, new EntryWrittenEventArgs(entry)});
services\monitoring\system\diagnosticts\Process.cs (1)
1637this.SynchronizingObject.BeginInvoke(exited, new object[]{this, EventArgs.Empty});
services\timers\system\timers\Timer.cs (1)
314this.SynchronizingObject.BeginInvoke(intervalElapsed, new object[]{this, elapsedEventArgs});
System.Messaging (1)
System\Messaging\MessageQueue.cs (1)
3968this.owner.SynchronizingObject.BeginInvoke(this.callback, new object[] { this });
System.Net (16)
net\PeerToPeer\Collaboration\ContactManager.cs (5)
369SynchronizingObject.BeginInvoke(handlerCopy, new object[] { this, subListChangedArgs }); 576SynchronizingObject.BeginInvoke(handlerCopy, new object[] { this, nameChangedArgs }); 790SynchronizingObject.BeginInvoke(handlerCopy, new object[] { this, presenceChangedArgs }); 1002SynchronizingObject.BeginInvoke(handlerCopy, new object[] { this, appChangedArgs }); 1215SynchronizingObject.BeginInvoke(handlerCopy, new object[] { this, objectChangedArgs });
net\PeerToPeer\Collaboration\MyContact.cs (1)
466SynchronizingObject.BeginInvoke(handlerCopy, new object[] { this, objChangedArgs });
net\PeerToPeer\Collaboration\PeerApplication.cs (1)
325SynchronizingObject.BeginInvoke(handlerCopy, new object[] { this, appChangedArgs });
net\PeerToPeer\Collaboration\PeerCollaboration.cs (4)
1164SynchronizingObject.BeginInvoke(handlerCopy, new object[] { null, nameChangedArgs }); 1331SynchronizingObject.BeginInvoke(handlerCopy, new object[] { null, presenceChangedArgs }); 1496SynchronizingObject.BeginInvoke(handlerCopy, new object[] { null, objChangedArgs }); 1660SynchronizingObject.BeginInvoke(handlerCopy, new object[] { null, appChangedArgs });
net\PeerToPeer\Collaboration\PeerContact.cs (3)
1302SynchronizingObject.BeginInvoke(handlerCopy, new object[] { this, appChangedArgs }); 1554SynchronizingObject.BeginInvoke(handlerCopy, new object[] { this, objChangedArgs }); 1808SynchronizingObject.BeginInvoke(handlerCopy, new object[] { this, presenceChangedArgs });
net\PeerToPeer\Collaboration\PeerEndPoint.cs (1)
367SynchronizingObject.BeginInvoke(handlerCopy, new object[] { this, nameChangedArgs });
net\PeerToPeer\Collaboration\PeerObject.cs (1)
273SynchronizingObject.BeginInvoke(handlerCopy, new object[] { this, objChangedArgs });