Gets or sets the object used to marshal event-handler calls that are issued when an interval has elapsed.
<BrowsableAttribute(False)> _ <TimersDescriptionAttribute("TimerSynchronizingObject")> _ Public Property SynchronizingObject As ISynchronizeInvoke
Dim instance As Timer Dim value As ISynchronizeInvoke value = instance.SynchronizingObject instance.SynchronizingObject = value
[BrowsableAttribute(false)] [TimersDescriptionAttribute("TimerSynchronizingObject")] public ISynchronizeInvoke SynchronizingObject { get; set; }
[BrowsableAttribute(false)] [TimersDescriptionAttribute(L"TimerSynchronizingObject")] public: property ISynchronizeInvoke^ SynchronizingObject { ISynchronizeInvoke^ get (); void set (ISynchronizeInvoke^ value); }
public function get SynchronizingObject () : ISynchronizeInvoke public function set SynchronizingObject (value : ISynchronizeInvoke)
When SynchronizingObject is nullNothingnullptra null reference (Nothing in Visual Basic), the method that handles the Elapsed event is called on a thread from the system-thread pool. For more information on system-thread pools, see ThreadPool.
When the Elapsed event is handled by a visual Windows Forms component, such as a button, accessing the component through the system-thread pool might result in an exception or just might not work. Avoid this effect by setting SynchronizingObject to a Windows Forms component, which causes the method that handles the Elapsed event to be called on the same thread that the component was created on.
If the Timer is used inside Visual Studio in a Windows Forms designer, SynchronizingObject is automatically set to the control that contains the Timer. For example, if you place a Timer on a designer for Form1 (which inherits from Form), the SynchronizingObject property of Timer is set to the instance of Form1.
Windows 7, Windows Vista, Windows XP SP2, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP Starter Edition, Windows Server 2008 R2, Windows Server 2008, Windows Server 2003, Windows Server 2000 SP4, Windows Millennium Edition, Windows 98