CodeArgument.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 » CodeArgument.cs
using System;


namespace AnticipatingMinds.Genesis.CodeDOM{
  /// <summary>
  /// Represents an argument in function invocation statement or class instantiation statement.
  /// </summary>
  /// <remarks>
  /// <para><B><I>Argument</I></B>  an expression in the comma-separated list bounded by the parentheses in a method or instance
  /// constructor call expression. It is also known as an actual argument. (ECMA 334. Page 7, Line 18; Page 132, Line 2).
  /// </para>
  /// <para>
  /// Some languages allow to identify argument by parameter name. C# employes named
  /// arguments during attribute declaration (ECMA 334. Page 310, Line 26). 
  /// </para>
  /// <para>
  /// If Name equals to String.Empty it implies that argument is identified by pits position in argument list.
  /// </para>
  /// </remarks>
  [Serializable]
  public class CodeArgument : CodeElement
  {
    #region Nested Types
    /// <summary>
    /// Argument declaration modifiers.
    /// </summary>
    /// <remarks>ECMA 334 - p. 231, line 10.</remarks>
    public enum CodeArgumentModifier
    {
      /// <summary>
      /// Indicates absense of argument modifiers.
      /// </summary>
      None,
      /// <summary>
      /// Indicats that the argument is passed as areference parameter.
      /// </summary>
      /// <remarks>(ECMA 334. Page 133, Line 2)</remarks>
      Ref,
      /// <summary>
      /// Indicats that the argument is passed as an output parameter.
      /// </summary>
      /// <remarks>(ECMA 334. Page 133, Line 5)</remarks>
      Out
    };
    #endregion Nested Types
    #region Instance constructors
    /// <summary>
    /// Initializes new instance of CodeArgument class.
    /// </summary>
    public CodeArgument()
    {
    }
    /// <summary>
    /// Initializes new instance of CodeArgument class.
    /// </summary>
    /// <param name="value">Defines argument value</param>
    public CodeArgument(CodeExpression value):this()
    {
      Value = value;
    }
    #endregion Instance constructors
    #region Public instance properties
    /// <summary>
    /// Gets or sets argument name.
    /// </summary>
    public string Name
    {
      get
      {
        return name;
      }
      set
      {
        name = (value == null ? string.Empty:value);
      }
    }
    /// <summary>
    /// Gets or sets argument value.
    /// </summary>
    public CodeExpression Value
    {
      get
      {
        return argumentValue;
      }
      set
      {
        argumentValue = value;
      }
    }
    /// <summary>
    /// Parameter declaration modifiers
    /// </summary>
    /// <remarks>(ECMA 334. Page 132, Line 24).</remarks>
    public CodeArgumentModifier Modifier
    {
      get
      {
        return argumentModifier;
      }
      set
      {
        argumentModifier = value;
      }
    }
    #endregion Public instance properties
    #region Private instance fields
    private string name;
    private CodeExpression argumentValue;
    private CodeArgumentModifier argumentModifier = CodeArgumentModifier.None;
    #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.