DetailsViewModeEventArgs.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 / xsp / System / Web / UI / WebControls / DetailsViewModeEventArgs.cs / 1305376 / DetailsViewModeEventArgs.cs

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

namespace System.Web.UI.WebControls { 
 
    using System;
    using System.ComponentModel; 

    /// 
    /// Provides data for the  event.
    ///  
    public class DetailsViewModeEventArgs : CancelEventArgs {
 
        private DetailsViewMode _mode; 
        private bool _cancelingEdit;
 

        /// 
        /// Initializes a new instance of  class.
        ///  
        public DetailsViewModeEventArgs(DetailsViewMode mode, bool cancelingEdit) : base(false) {
            this._mode = mode; 
            this._cancelingEdit = cancelingEdit; 
        }
 

        /// 
        /// Gets a bool in the  indicating whether the mode change is the result of a cancel command.
        ///  This property is read-only. 
        /// 
        public bool CancelingEdit { 
            get { 
                return _cancelingEdit;
            } 
        }


        ///  
        /// Gets a DetailsViewMode in the . This property is read-only.
        ///  
        public DetailsViewMode NewMode { 
            get {
                return _mode; 
            }
            set {
                _mode = value;
            } 
        }
    } 
} 


// File provided for Reference Use Only by Microsoft Corporation (c) 2007.
//------------------------------------------------------------------------------ 
// 
//     Copyright (c) Microsoft Corporation.  All rights reserved.
// 
//----------------------------------------------------------------------------- 

namespace System.Web.UI.WebControls { 
 
    using System;
    using System.ComponentModel; 

    /// 
    /// Provides data for the  event.
    ///  
    public class DetailsViewModeEventArgs : CancelEventArgs {
 
        private DetailsViewMode _mode; 
        private bool _cancelingEdit;
 

        /// 
        /// Initializes a new instance of  class.
        ///  
        public DetailsViewModeEventArgs(DetailsViewMode mode, bool cancelingEdit) : base(false) {
            this._mode = mode; 
            this._cancelingEdit = cancelingEdit; 
        }
 

        /// 
        /// Gets a bool in the  indicating whether the mode change is the result of a cancel command.
        ///  This property is read-only. 
        /// 
        public bool CancelingEdit { 
            get { 
                return _cancelingEdit;
            } 
        }


        ///  
        /// Gets a DetailsViewMode in the . This property is read-only.
        ///  
        public DetailsViewMode NewMode { 
            get {
                return _mode; 
            }
            set {
                _mode = value;
            } 
        }
    } 
} 


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