Click here to Skip to main content
15,896,606 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.
using System;

namespace NetMX.OpenMBean.Mapper
{
   /// <summary>
   /// Provides information about mapping of CLR type to <see cref="OpenType"/>.
   /// </summary>
   [AttributeUsage(AttributeTargets.Class | AttributeTargets.Interface | AttributeTargets.Enum, AllowMultiple = false)]
   public sealed class OpenTypeAttribute : Attribute
   {
      private string _mappedName;
      private string _resourceName;

      /// <summary>
      /// Name of <see cref="OpenType"/> this type is mapped to. Default is full name of CLR type.
      /// </summary>
      public string MappedName
      {
         get { return _mappedName; }
         set { _mappedName = value; }
      }      
      /// <summary>
      /// Name of resource file containing textual description of mapped <see cref="OpenType"/> and its
      /// features.
      /// </summary>
      public string ResourceName
      {
         get { return _resourceName; }
         set { _resourceName = value; }
      }
   }
}

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