CodeDelegateInvokeExpression.cs source code in C# .NET

Source code for the .NET framework in C#

                        

Code:

/ 4.0 / 4.0 / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / CompMod / System / CodeDOM / CodeDelegateInvokeExpression.cs / 1305376 / CodeDelegateInvokeExpression.cs

                            //------------------------------------------------------------------------------ 
// 
//
// [....]
//     Copyright (c) Microsoft Corporation.  All rights reserved. 
// 
//----------------------------------------------------------------------------- 
 
namespace System.CodeDom {
 
    using System.Diagnostics;
    using System;
    using Microsoft.Win32;
    using System.Collections; 
    using System.Runtime.InteropServices;
 
    ///  
    ///    
    ///       Represents an 
    ///       expression that invokes a delegate.
    ///    
    /// 
    [ 
        ClassInterface(ClassInterfaceType.AutoDispatch),
        ComVisible(true), 
        Serializable, 
    ]
    public class CodeDelegateInvokeExpression : CodeExpression { 
        private CodeExpression targetObject;
        private CodeExpressionCollection parameters = new CodeExpressionCollection();

        ///  
        ///    
        ///       Initializes a new instance of . 
        ///     
        /// 
        public CodeDelegateInvokeExpression() { 
        }

        /// 
        ///     
        ///       Initializes a new instance of .
        ///     
        ///  
        public CodeDelegateInvokeExpression(CodeExpression targetObject) {
            TargetObject = targetObject; 
        }

        /// 
        ///     
        ///       Initializes a new instance of 
        ///       . 
        ///     
        /// 
        public CodeDelegateInvokeExpression(CodeExpression targetObject, params CodeExpression[] parameters) { 
            TargetObject = targetObject;
            Parameters.AddRange(parameters);
        }
 
        /// 
        ///     
        ///       The 
        ///       delegate's target object.
        ///     
        /// 
        public CodeExpression TargetObject {
            get {
                return targetObject; 
            }
            set { 
                this.targetObject = value; 
            }
        } 

        /// 
        ///    
        ///       The 
        ///       delegate parameters.
        ///     
        ///  
        public CodeExpressionCollection Parameters {
            get { 
                return parameters;
            }
        }
    } 
}

// File provided for Reference Use Only by Microsoft Corporation (c) 2007.
//------------------------------------------------------------------------------ 
// 
//
// [....]
//     Copyright (c) Microsoft Corporation.  All rights reserved. 
// 
//----------------------------------------------------------------------------- 
 
namespace System.CodeDom {
 
    using System.Diagnostics;
    using System;
    using Microsoft.Win32;
    using System.Collections; 
    using System.Runtime.InteropServices;
 
    ///  
    ///    
    ///       Represents an 
    ///       expression that invokes a delegate.
    ///    
    /// 
    [ 
        ClassInterface(ClassInterfaceType.AutoDispatch),
        ComVisible(true), 
        Serializable, 
    ]
    public class CodeDelegateInvokeExpression : CodeExpression { 
        private CodeExpression targetObject;
        private CodeExpressionCollection parameters = new CodeExpressionCollection();

        ///  
        ///    
        ///       Initializes a new instance of . 
        ///     
        /// 
        public CodeDelegateInvokeExpression() { 
        }

        /// 
        ///     
        ///       Initializes a new instance of .
        ///     
        ///  
        public CodeDelegateInvokeExpression(CodeExpression targetObject) {
            TargetObject = targetObject; 
        }

        /// 
        ///     
        ///       Initializes a new instance of 
        ///       . 
        ///     
        /// 
        public CodeDelegateInvokeExpression(CodeExpression targetObject, params CodeExpression[] parameters) { 
            TargetObject = targetObject;
            Parameters.AddRange(parameters);
        }
 
        /// 
        ///     
        ///       The 
        ///       delegate's target object.
        ///     
        /// 
        public CodeExpression TargetObject {
            get {
                return targetObject; 
            }
            set { 
                this.targetObject = value; 
            }
        } 

        /// 
        ///    
        ///       The 
        ///       delegate parameters.
        ///     
        ///  
        public CodeExpressionCollection Parameters {
            get { 
                return parameters;
            }
        }
    } 
}

// File provided for Reference Use Only by Microsoft Corporation (c) 2007.

                        

Link Menu

Network programming in C#, Network Programming in VB.NET, Network Programming in .NET
This book is available now!
Buy at Amazon US or
Buy at Amazon UK