| Visual Basic (Declaration) | |
|---|---|
<CategoryAttribute("Progress")> Public Event BusyChanged As EventHandler | |
| Visual Basic (Usage) | Copy Code |
|---|---|
Dim instance As Imap Dim handler As EventHandler AddHandler instance.BusyChanged, handler | |
| C# | |
|---|---|
[CategoryAttribute("Progress")] public event EventHandler BusyChanged | |
| Managed Extensions for C++ | |
|---|---|
[CategoryAttribute("Progress")] public: __event EventHandler* BusyChanged | |
| C++/CLI | |
|---|---|
[CategoryAttribute("Progress")] public: event EventHandler^ BusyChanged | |
This event is fired when the value of the Object.Busy property changes. The Object.Busy property changes when a method is executing that is occupying the TCP connection.
This event is useful in several scenarios, for example:
- Displaying to the user when the PowerTCP component is busy.
- Taking action within your application when the PowerTCP component is no longer busy.
If you are using the PowerTCP component as a reference, you must create a method to handle the event yourself. For more information on using events using PowerTCP.NET within the Visual Studio.NET environment, see Using Events In PowerTCP.
Target Platforms: Microsoft .NET Framework 2.0