CodeAttachEventStatement.cs source code in C# .NET

Source code for the .NET framework in C#

                        

Code:

/ FX-1434 / FX-1434 / 1.0 / untmp / whidbey / REDBITS / ndp / fx / src / CompMod / System / CodeDOM / CodeAttachEventStatement.cs / 1 / CodeAttachEventStatement.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 a event attach statement. 
    ///    
    ///  
    [
        ClassInterface(ClassInterfaceType.AutoDispatch),
        ComVisible(true),
        Serializable, 
    ]
    public class CodeAttachEventStatement : CodeStatement { 
        private CodeEventReferenceExpression eventRef; 
        private CodeExpression listener;
 
        /// 
        ///    
        ///       Initializes a new instance of .
        ///     
        /// 
        public CodeAttachEventStatement() { 
        } 

        ///  
        ///    
        ///       Initializes a new instance of the  class using the specified arguments.
        ///    
        ///  
        public CodeAttachEventStatement(CodeEventReferenceExpression eventRef, CodeExpression listener) {
            this.eventRef = eventRef; 
            this.listener = listener; 
        }
 
        /// 
        ///    [To be supplied.]
        /// 
        public CodeAttachEventStatement(CodeExpression targetObject, string eventName, CodeExpression listener) { 
            this.eventRef = new CodeEventReferenceExpression(targetObject, eventName);
            this.listener = listener; 
        } 

        ///  
        ///    
        ///       The event to attach a listener to.
        ///    
        ///  
        public CodeEventReferenceExpression Event {
            get { 
                if (eventRef == null) { 
                    return new CodeEventReferenceExpression();
                } 
                return eventRef;
            }
            set {
                eventRef = value; 
            }
        } 
 
        /// 
        ///     
        ///       The new listener.
        ///    
        /// 
        public CodeExpression Listener { 
            get {
                return listener; 
            } 
            set {
                listener = value; 
            }
        }
    }
} 


                        

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