ComponentEvent.cs source code in C# .NET

Source code for the .NET framework in C#

                        

Code:

/ DotNET / DotNET / 8.0 / untmp / whidbey / REDBITS / ndp / fx / src / CompMod / System / ComponentModel / Design / ComponentEvent.cs / 1 / ComponentEvent.cs

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

/* 
 */ 
namespace System.ComponentModel.Design {
    using Microsoft.Win32; 
    using System;
    using System.ComponentModel;
    using System.Diagnostics;
    using System.Security.Permissions; 

    ///  
    /// Provides data for the System.ComponentModel.Design.IComponentChangeService.ComponentEvent 
    /// event raised for component-level events.
    ///  
    [HostProtection(SharedState = true)]
    [System.Runtime.InteropServices.ComVisible(true)]
    [System.Security.Permissions.PermissionSetAttribute(System.Security.Permissions.SecurityAction.InheritanceDemand, Name="FullTrust")]
    [System.Security.Permissions.PermissionSetAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Name="FullTrust")] 
    public class ComponentEventArgs : EventArgs {
 
        private IComponent component; 

        ///  
        ///    
        ///       Gets or sets the component associated with the event.
        ///    
        ///  
        public virtual IComponent Component {
            get { 
                return component; 
            }
        } 

        /// 
        ///    
        ///       Initializes a new instance of the System.ComponentModel.Design.ComponentEventArgs class. 
        ///    
        ///  
        public ComponentEventArgs(IComponent component) { 
            this.component = component;
        } 
    }
}


                        

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