CodeMethodParameter.cs :  » Development » devAdvantage » AnticipatingMinds » Genesis » CodeDOM » C# / CSharp Open Source

Home
C# / CSharp Open Source
1.2.6.4 mono .net core
2.2.6.4 mono core
3.Aspect Oriented Frameworks
4.Bloggers
5.Build Systems
6.Business Application
7.Charting Reporting Tools
8.Chat Servers
9.Code Coverage Tools
10.Content Management Systems CMS
11.CRM ERP
12.Database
13.Development
14.Email
15.Forum
16.Game
17.GIS
18.GUI
19.IDEs
20.Installers Generators
21.Inversion of Control Dependency Injection
22.Issue Tracking
23.Logging Tools
24.Message
25.Mobile
26.Network Clients
27.Network Servers
28.Office
29.PDF
30.Persistence Frameworks
31.Portals
32.Profilers
33.Project Management
34.RSS RDF
35.Rule Engines
36.Script
37.Search Engines
38.Sound Audio
39.Source Control
40.SQL Clients
41.Template Engines
42.Testing
43.UML
44.Web Frameworks
45.Web Service
46.Web Testing
47.Wiki Engines
48.Windows Presentation Foundation
49.Workflows
50.XML Parsers
C# / C Sharp
C# / C Sharp by API
C# / CSharp Tutorial
C# / CSharp Open Source » Development » devAdvantage 
devAdvantage » AnticipatingMinds » Genesis » CodeDOM » CodeMethodParameter.cs
using System;

namespace AnticipatingMinds.Genesis.CodeDOM{
  ///<summary>Represents formal parameter of the method.</summary>
  /// <remarks>
  /// (ECMA 334. Page 230, Line 41)
  /// </remarks>
  [Serializable]
  public class CodeMethodParameter : CodeElement
  {
    #region Nested Types
    /// <summary>
    /// Represents parameter declaration modifiers.
    /// </summary>
    public enum CodeMethodParameterModifier
    {
      /// <summary>
      /// Parameter has no modifiers.
      /// </summary>
      None,
      /// <summary>
      /// Parameter is passed by reference.
      /// </summary>
      Ref,
      /// <summary>
      /// Out parameter.
      /// </summary>
      Out
    };
    #endregion Nested Types
    #region Instance constructors
    /// <summary>
    /// Initializes new instance of the <see cref="CodeMethodParameter"/> class.
    /// </summary>
    public CodeMethodParameter(): this(new CodeTypeReference("System.Void"),string.Empty)
    {
      this.type = type;
      this.name= name;
    }
    /// <summary>
    /// Initializes new instance of the <see cref="CodeMethodParameter"/> class.
    /// </summary>
    /// <param name="type">Parameter type.</param>
    /// <param name="name">Parameter name.</param>
    public CodeMethodParameter(CodeTypeReference type, string name)
    {
      this.type = type;
      this.name= name;
    }
    #endregion Instance constructors
    #region Public instance properties
    /// <summary>
    /// Gets or sets parameter declaration modifiers.
    /// </summary>
    public CodeMethodParameterModifier Modifier
    {
      get
      {
        return parameterModifiers;
      }
      set
      {
        parameterModifiers = value;
      }
    }
    /// <summary>
    /// Gets or sets parameter type.
    /// </summary>
    public CodeTypeReference Type
    {
      get
      {
        return type;
      }
      set
      {
        type = value;
      }
    }
    /// <summary>
    /// Gets or sets parameter name.
    /// </summary>
    public string Name
    {
      get
      {
        return name;
      }
      set
      {
        name = value;
      }
    }
    /// <summary>
    /// Gets or sets flag that specifies that parameter is parameter-array.
    /// </summary>
    /// <remarks>
    /// Defines if parameter is parameter-array. (params in C#)
    /// (ECMA 334. Page 231, Line 13)
    /// </remarks>
    public bool IsParameterArray
    {
      get
      {
        return isParameterArray;
      }
      set
      {
        isParameterArray = value;
      }
    }
    /// <summary>
    /// Gets collection of attributes associated with parameter declaration.
    /// </summary>
    /// <remarks>ECMA 334 - p. 231, line 9,14.</remarks>
    public CodeAttributeCollection Attributes
    {
      get
      {
        return attributes;
      }
    }
    #endregion Public instance properties
    #region Private instance fields
    private CodeTypeReference type;
    private string name;
    private CodeMethodParameterModifier parameterModifiers = CodeMethodParameterModifier.None;
    private bool isParameterArray = false;
    private CodeAttributeCollection attributes = new CodeAttributeCollection();
    #endregion Private instance fields
  }
}
www.java2v.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.