using System; using System.Text; using System.Collections.Generic; namespace DynamicCodeGeneration.CustomAttributes { /// <summary> /// Sample assembly level attribute /// </summary> [AttributeUsage( AttributeTargets.Assembly )] public sealed class AssemblyLevelAttribute : Attribute { private string _authorName; private GenerationMode _generationMode; /// <summary> /// The name of the Product that has been subscribed /// </summary> public string AuthorName { set { _authorName = value; } get { return _authorName; } } /// <summary> /// The mode for which the plugin is designed (Server / OutlookClient or Both) /// </summary> public GenerationMode GenerationMode { set { _generationMode = value; } get { return _generationMode; } } #region Public /// <summary> /// Sample assembly level attribute /// </summary> /// <param name="authorName"></param> /// <param name="generationMode"></param> public AssemblyLevelAttribute(string authorName, GenerationMode generationMode) { this.AuthorName = authorName; this.GenerationMode = generationMode; } #endregion } }
By viewing downloads associated with this article you agree to the Terms of use 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.
This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)
Skills that self-taught computer programmers lack