| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061 |
- //
- // System.CodeDom CodeAttributeArgument Class implementation
- //
- // Author:
- // Miguel de Icaza ([email protected])
- //
- // (C) 2001 Ximian, Inc.
- //
- using System.Runtime.InteropServices;
- namespace System.CodeDom
- {
- [Serializable]
- [ClassInterface(ClassInterfaceType.AutoDispatch)]
- [ComVisible(true)]
- public class CodeAttributeArgument
- {
- private string name;
- private CodeExpression value;
-
- //
- // Constructors
- //
- public CodeAttributeArgument ()
- {
- }
- public CodeAttributeArgument (CodeExpression value)
- {
- this.value = value;
- }
- public CodeAttributeArgument (string name, CodeExpression value)
- {
- this.name = name;
- this.value = value;
- }
- //
- // Properties
- //
- public string Name {
- get {
- return name;
- }
- set {
- name = value;
- }
- }
- public CodeExpression Value {
- get {
- return this.value;
- }
- set {
- this.value = value;
- }
- }
- }
- }
|