'Declaration
Public Event ConnectionStatusChanged As EventHandler(Of ConnectionStatusEventArgs)
'Usage
Dim instance As ServerBase Dim handler As EventHandler(Of ConnectionStatusEventArgs) AddHandler instance.ConnectionStatusChanged, handler
public event EventHandler<ConnectionStatusEventArgs> ConnectionStatusChanged
public: event EventHandler<ConnectionStatusEventArgs^>^ ConnectionStatusChanged
Event Data
The event handler receives an argument of type ConnectionStatusEventArgs containing data related to this event. The following ConnectionStatusEventArgs properties provide information specific to this event.
Property | Description |
---|---|
ChannelStatus | The new status of the channel. |
Closed | Indicate that the channel is closed. |
EndpointUrl | The endpoint Url of the channel which changed the status. |
Requirements
Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
See Also