RefreshEventArgs.cs source code in C# .NET

Source code for the .NET framework in C#

                        

Code:

/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / CompMod / System / ComponentModel / RefreshEventArgs.cs / 1305376 / RefreshEventArgs.cs

                            //------------------------------------------------------------------------------ 
// 
//     Copyright (c) Microsoft Corporation.  All rights reserved.
// 
//----------------------------------------------------------------------------- 

/* 
 */ 
namespace System.ComponentModel {
 
    using System;
    using System.Diagnostics;
    using System.Security.Permissions;
 
    /// 
    ///     
    ///       Provides data for the  event. 
    ///    
    ///  
    [HostProtection(SharedState = true)]
    public class RefreshEventArgs : EventArgs {

        private object componentChanged; 
        private Type   typeChanged;
 
        ///  
        ///    
        ///       Initializes a new instance of the  class with 
        ///       the component that has
        ///       changed.
        ///    
        ///  
        public RefreshEventArgs(object componentChanged) {
            this.componentChanged = componentChanged; 
            this.typeChanged = componentChanged.GetType(); 
        }
 
        /// 
        ///    
        ///       Initializes a new instance of the  class with
        ///       the type 
        ///       of component that has changed.
        ///     
        ///  
        public RefreshEventArgs(Type typeChanged) {
            this.typeChanged = typeChanged; 
        }

        /// 
        ///     
        ///       Gets the component that has changed
        ///       its properties, events, or 
        ///       extenders. 
        ///    
        ///  
        public object ComponentChanged {
            get {
                return componentChanged;
            } 
        }
 
        ///  
        ///    
        ///       Gets the type that has changed its properties, or events. 
        ///    
        /// 
        public Type TypeChanged {
            get { 
                return typeChanged;
            } 
        } 
    }
} 


// 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