1 implementation of ISynchronizeInvoke
System.Windows.Forms (1)
System\Windows\Forms\Control.cs (1)
44ISynchronizeInvoke,
17 references to ISynchronizeInvoke
netstandard (1)
netstandard.cs (1)
357[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.ComponentModel.ISynchronizeInvoke))]
System (1)
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; 216public ISynchronizeInvoke? SynchronizingObject 224if (baseComponent != null && baseComponent is ISynchronizeInvoke) 226_synchronizingObject = (ISynchronizeInvoke)baseComponent;
System.Diagnostics.EventLog (1)
artifacts\obj\System.Diagnostics.EventLog\Debug\net10.0\System.Diagnostics.EventLog.notsupported.cs (1)
60public System.ComponentModel.ISynchronizeInvoke SynchronizingObject { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_EventLog); } set { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_EventLog); } }
System.Diagnostics.Process (4)
System\Diagnostics\Process.cs (4)
862public ISynchronizeInvoke? SynchronizingObject { get; set; } 1132if (SynchronizingObject is ISynchronizeInvoke syncObj && syncObj.InvokeRequired) 1706if (SynchronizingObject is ISynchronizeInvoke syncObj && syncObj.InvokeRequired) 1725if (SynchronizingObject is ISynchronizeInvoke syncObj && syncObj.InvokeRequired)
System.IO.FileSystem.Watcher (4)
System\IO\FileSystemWatcher.cs (4)
502ISynchronizeInvoke? syncObj = SynchronizingObject; 518ISynchronizeInvoke? syncObj = SynchronizingObject; 534ISynchronizeInvoke? syncObj = SynchronizingObject; 671public ISynchronizeInvoke? SynchronizingObject { get; set; }