RasComponent.SynchronizingObject Property
From DotRas SDK
|
|
| DotRas SDK Documentation |
| RasComponent..::..SynchronizingObject Property |
| RasComponent Class See Also Send Feedback |
|
|
Gets or sets the object used to marshal event-handler calls that are issued by the component.
Namespace: DotRas.Design
Assembly: DotRas (in DotRas.dll) Version: 1.3.5166.33435 (1.3.0.0)
Syntax
| C# |
|---|
public ISynchronizeInvoke SynchronizingObject { get; set; } |
| Visual Basic |
|---|
Public Property SynchronizingObject As ISynchronizeInvoke Get Set |
| Visual C++ |
|---|
public: property ISynchronizeInvoke^ SynchronizingObject { ISynchronizeInvoke^ get (); void set (ISynchronizeInvoke^ value); } |
| F# |
|---|
member SynchronizingObject : ISynchronizeInvoke with get, set |
Property Value
Type: ISynchronizeInvoke
Remarks
This property is only required if you need to marshal events raised by the component back to another thread. Typically this is only needed if you're using a user interface, applications like Windows services do not require any thread marshaling.
See Also