[TIBCO.EMS .NET Admin client library 6.3 documentation]

This is the main class for administering a TIBCO Enterprise Message Service server.

Namespace:  TIBCO.EMS.ADMIN
Assembly:  TIBCO.EMS.ADMIN (in TIBCO.EMS.ADMIN.dll)

Syntax

public class Admin
Public Class Admin
public ref class Admin

Remarks

To use this API, first create an instance of this class using one of the constructors. With that instance, one can retrieve information about the server and its components, as well as modify the server's configuration. All modifications to the server configuration are made through this class. For example, to change the description of a group, one would do the following:
 Copy Code
            GroupInfo groupInfo = Admin.GetGroup("groupName");
            groupInfo.SetDescription("New Description");
            Admin.UpdateGroup(groupInfo);
            
It is important to note that public constructors (such as those for TopicInfo and GroupInfo), will initialize internal variables. When updating the server be sure to populate objects entirely or retrieve them from the server first as in the example above to avoid any unintentional updates.

Inheritance Hierarchy

System..::.Object
  TIBCO.EMS.ADMIN..::.Admin

See Also