Universal Messaging 9.7 | Universal Messaging Developer Guide | Enterprise APIs | Enterprise Developer's Guide for C# | Messaging API | MyChannels.Universal Messaging API: Creating and Disposing of a Session
 
MyChannels.Universal Messaging API: Creating and Disposing of a Session
Creating a session is extremely simple with the C# .NET MyChannels.Universal Messaging API. Simply create a new Session object with the desired RNAME, then call the Session.Initialize() method.

String RNAME = "nsp://127.0.0.1:9000";
Session session = new Session(RNAME);
session.Initialize();
DataGroups can be enabled on a session by setting the DataGroups.Enable flag, as shown below, before the call to Initialize() is made.

session.DataGroups.Enable = true;
To end a session, call the Session.Dispose() method.

session.Dispose();
Session Events
*AsynchronousExceptionRaised - fired when an asynchronous exception is thrown by the session
*ConnectionStatusChanged - fired when the connection status changes, for example when the connection is lost.

Copyright © 2013-2015 | Software AG, Darmstadt, Germany and/or Software AG USA, Inc., Reston, VA, USA, and/or its subsidiaries and/or its affiliates and/or their licensors.