1 implementation of ISynchronizeInvoke
System.Windows.Forms (1)
System\Windows\Forms\Control.cs (1)
43ISynchronizeInvoke,
21 references to ISynchronizeInvoke
netstandard (1)
netstandard.cs (1)
357[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.ComponentModel.ISynchronizeInvoke))]
System (1)
src\runtime\src\libraries\shims\System\ref\System.cs (1)
343[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.ComponentModel.ISynchronizeInvoke))]
System.ComponentModel.Primitives (2)
System\ComponentModel\ISynchronizeInvoke.cs (2)
12/// Gets a value indicating whether the caller must call <see cref='System.ComponentModel.ISynchronizeInvoke.Invoke'/> 23/// Waits until the process you started by calling <see cref='System.ComponentModel.ISynchronizeInvoke.BeginInvoke'/>
System.ComponentModel.TypeConverter (4)
System\Timers\Timer.cs (4)
23private ISynchronizeInvoke? _synchronizingObject; 214public ISynchronizeInvoke? SynchronizingObject 222if (baseComponent != null && baseComponent is ISynchronizeInvoke) 224_synchronizingObject = (ISynchronizeInvoke)baseComponent;
System.Diagnostics.EventLog (5)
System\Diagnostics\EventLog.cs (1)
174public ISynchronizeInvoke? SynchronizingObject
System\Diagnostics\EventLogInternal.cs (4)
53private ISynchronizeInvoke? synchronizingObject; 376public ISynchronizeInvoke? SynchronizingObject 386if (baseComponent != null && baseComponent is ISynchronizeInvoke) 387this.synchronizingObject = (ISynchronizeInvoke)baseComponent;
System.Diagnostics.Process (4)
System\Diagnostics\Process.cs (4)
754public ISynchronizeInvoke? SynchronizingObject { get; set; } 1046if (SynchronizingObject is ISynchronizeInvoke syncObj && syncObj.InvokeRequired) 1724if (SynchronizingObject is ISynchronizeInvoke syncObj && syncObj.InvokeRequired) 1743if (SynchronizingObject is ISynchronizeInvoke syncObj && syncObj.InvokeRequired)
System.IO.FileSystem.Watcher (4)
System\IO\FileSystemWatcher.cs (4)
490ISynchronizeInvoke? syncObj = SynchronizingObject; 506ISynchronizeInvoke? syncObj = SynchronizingObject; 522ISynchronizeInvoke? syncObj = SynchronizingObject; 659public ISynchronizeInvoke? SynchronizingObject { get; set; }