Click here to Skip to main content
15,891,033 members
Articles / Programming Languages / C#

NetMX - a JMX port to the .NET world

Rate me:
Please Sign up or sign in to vote.
5.00/5 (1 vote)
10 Mar 2008LGPL34 min read 39.6K   268   11  
An introduction to NetMX - a lightweight .NET management solution.
#region USING
using System;
using System.Collections.Generic;
using System.Text;
#endregion

namespace NetMX
{   
   /// <summary>
   /// Defines the management interface of an object of class MBeanServerDelegate.
   /// </summary>
   [MBeanResource("NetMX.Resources.MBeanServerDelegate")]
   public interface MBeanServerDelegateMBean
   {
      /// <summary>
      /// Gets the NetMX implementation name (the name of this product).
      /// </summary>
      string ImplementationName { get; }
      /// <summary>
      /// Gets the NetMX implementation vendor (the vendor of this product).
      /// </summary>
      string ImplementationVendor { get; }
      /// <summary>
      /// Gets the NetMX implementation version (the version of this product).
      /// </summary>
      string ImplementationVersion { get; }
      /// <summary>
      /// Gets the MBean server agent identity.
      /// </summary>
      string MBeanServerId { get; }
      /// <summary>
      /// Gets the full name of the NetMX specification implemented by this product.
      /// </summary>
      string SpecificationName { get; }
      /// <summary>
      /// Gets the vendor of the JMX specification implemented by this product.
      /// </summary>
      string SpecificationVendor { get; }
      /// <summary>
      /// Gets the version of the JMX specification implemented by this product.
      /// </summary>
      string SpecificationVersion { get; }
   }
}

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The GNU Lesser General Public License (LGPLv3)


Written By
Software Developer (Senior) VSoft
Poland Poland
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions