The event is invoked when the connection with the duplex input channel was opened.
Namespace: Eneter.Messaging.MessagingSystems.MessagingSystemBaseAssembly: Eneter.Messaging.Framework (in Eneter.Messaging.Framework.dll) Version: 5.0.0.0 (5.0.0.0)
Syntax
| C# |
|---|
event EventHandler<DuplexChannelEventArgs> ConnectionOpened |
| Visual Basic |
|---|
Event ConnectionOpened As EventHandler(Of DuplexChannelEventArgs) |
| Visual C++ |
|---|
event EventHandler<DuplexChannelEventArgs^>^ ConnectionOpened { void add (EventHandler<DuplexChannelEventArgs^>^ value); void remove (EventHandler<DuplexChannelEventArgs^>^ value); } |
Remarks
Notice, the event is invoked in a thread from the thread pool. Therefore, if you need to manipulate UI,
do not forget to marshal it to the UI thread.