DetailsViewModeEventArgs.cs source code in C# .NET

Source code for the .NET framework in C#

                        

Code:

/ FXUpdate3074 / FXUpdate3074 / 1.1 / DEVDIV / depot / DevDiv / releases / whidbey / QFE / ndp / fx / src / xsp / System / Web / UI / WebControls / DetailsViewModeEventArgs.cs / 1 / DetailsViewModeEventArgs.cs

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

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


    ///  
    /// Provides data for the  event.
    ///  
    [AspNetHostingPermission(SecurityAction.LinkDemand, Level=AspNetHostingPermissionLevel.Minimal)] 
    [AspNetHostingPermission(SecurityAction.InheritanceDemand, Level=AspNetHostingPermissionLevel.Minimal)]
    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.
//------------------------------------------------------------------------------ 
// 
//     Copyright (c) Microsoft Corporation.  All rights reserved.
// 
//----------------------------------------------------------------------------- 

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


    ///  
    /// Provides data for the  event.
    ///  
    [AspNetHostingPermission(SecurityAction.LinkDemand, Level=AspNetHostingPermissionLevel.Minimal)] 
    [AspNetHostingPermission(SecurityAction.InheritanceDemand, Level=AspNetHostingPermissionLevel.Minimal)]
    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.

                        

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