Opc.Ua.Core
ConnectionStatusChanged Event (ServerBase)



Opc.Ua Namespace > ServerBase Class : ConnectionStatusChanged Event
Raised when the status of a monitored connection changes.
Syntax
'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.

PropertyDescription
The new status of the channel.  
Indicate that the channel is closed.  
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