mscorlib(4.0.0.0) API with additions
CodeArgumentReferenceExpression.cs
2 
3 namespace System.CodeDom
4 {
6  [Serializable]
7  [ClassInterface(ClassInterfaceType.AutoDispatch)]
8  [ComVisible(true)]
10  {
11  private string parameterName;
12 
15  public string ParameterName
16  {
17  get
18  {
19  if (parameterName != null)
20  {
21  return parameterName;
22  }
23  return string.Empty;
24  }
25  set
26  {
27  parameterName = value;
28  }
29  }
30 
33  {
34  }
35 
38  public CodeArgumentReferenceExpression(string parameterName)
39  {
40  this.parameterName = parameterName;
41  }
42  }
43 }
Definition: __Canon.cs:3
string ParameterName
Gets or sets the name of the parameter this expression references.
CodeArgumentReferenceExpression(string parameterName)
Initializes a new instance of the T:System.CodeDom.CodeArgumentReferenceExpression class using the sp...
Represents a code expression. This is a base class for other code expression objects that is never in...
CodeArgumentReferenceExpression()
Initializes a new instance of the T:System.CodeDom.CodeArgumentReferenceExpression class.
ClassInterfaceType
Identifies the type of class interface that is generated for a class.
Represents a reference to the value of an argument passed to a method.