| Visual Basic (Declaration) | |
|---|---|
Public Event ThreadDone() As ThreadDoneEventHandler | |
| Visual Basic (Usage) | Copy Code |
|---|---|
| |
| C# | |
|---|---|
public event ThreadDoneEventHandler ThreadDone() | |
| C++/CLI | |
|---|---|
public: event ThreadDoneEventHandler^ ThreadDone(); | |
The event handler receives an argument of type DataEventArgs<TData> containing data related to this event. The following DataEventArgs<TData> properties provide information specific to this event.
| Property | Description |
|---|---|
| Data | Gets the information related to the event. |
Target Platforms: Microsoft .NET Framework 3.0, Windows XP, Windows Server 2003 family, Windows Server 2008 family
Copy Code