CancelEventArgs.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 / CancelEventArgs.cs / 1 / CancelEventArgs.cs

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

namespace System.ComponentModel { 
    using System; 
    using System.ComponentModel;
    using System.Diagnostics; 
    using System.Security.Permissions;


    ///  
    ///    
    ///       Provides data for the  
    ///       event. 
    ///    
    ///  
    [HostProtection(SharedState = true)]
    public class CancelEventArgs : EventArgs {

        ///  
        ///     Indicates, on return, whether or not the operation should be cancelled
        ///     or not.  'true' means cancel it, 'false' means don't. 
        ///  
        private bool cancel;
 
        /// 
        ///    
        ///       Initializes a new instance of the  class with
        ///       cancel set to . 
        ///    
        ///  
        public CancelEventArgs() : this(false) { 
        }
 
        /// 
        ///    
        ///       Initializes a new instance of the  class with
        ///       cancel set to the given value. 
        ///    
        ///  
        public CancelEventArgs(bool cancel) 
        : base() {
            this.cancel = cancel; 
        }

        /// 
        ///     
        ///       Gets or sets a value
        ///       indicating whether the operation should be cancelled. 
        ///     
        /// 
        public bool Cancel { 
            get {
                return cancel;
            }
            set { 
                this.cancel = 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