| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566 |
- //
- // System.CodeDom CodeDelegateCreateExpression Class implementation
- //
- // Author:
- // Miguel de Icaza ([email protected])
- //
- // (C) 2001 Ximian, Inc.
- //
- namespace System.CodeDom {
- public class CodeDelegateCreateExpression : CodeExpression {
- string delegateType, methodName;
- CodeExpression targetObject;
- //
- // Constructors
- //
- public CodeDelegateCreateExpression (string delegateType,
- CodeExpression targetObject,
- string methodName)
- {
- this.delegateType = delegateType;
- this.targetObject = targetObject;
- this.methodName = methodName;
- }
- public CodeDelegateCreateExpression ()
- {
- }
- //
- // Properties
- //
- string DelegateType {
- get {
- return delegateType;
- }
- set {
- delegateType = value;
- }
- }
- string MethodName {
- get {
- return methodName;
- }
- set {
- methodName = value;
- }
- }
- CodeExpression TargetObject {
- get {
- return targetObject;
- }
- set {
- targetObject = value;
- }
- }
- }
- }
|