DataPagerCommandEventArgs.cs source code in C# .NET

Source code for the .NET framework in C#

                        

Code:

/ DotNET / DotNET / 8.0 / untmp / Orcas / RTM / ndp / fx / src / xsp / System / Web / Extensions / ui / webcontrols / DataPagerCommandEventArgs.cs / 1 / DataPagerCommandEventArgs.cs

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

using System; 
using System.Diagnostics.CodeAnalysis; 

namespace System.Web.UI.WebControls { 
    [AspNetHostingPermission(System.Security.Permissions.SecurityAction.LinkDemand, Level=AspNetHostingPermissionLevel.Minimal)]
    [AspNetHostingPermission(System.Security.Permissions.SecurityAction.InheritanceDemand, Level=AspNetHostingPermissionLevel.Minimal)]
    public class DataPagerCommandEventArgs : CommandEventArgs {
        private DataPagerField _pagerField; 
        private int _totalRowCount;
        private int _newMaximumRows = -1; 
        private int _newStartRowIndex = -1; 
        private DataPagerFieldItem _item;
 
        [SuppressMessage("Microsoft.Security", "CA2109:ReviewVisibleEventHandlers", MessageId = "2#")]
        public DataPagerCommandEventArgs(DataPagerField pagerField, int totalRowCount, CommandEventArgs originalArgs, DataPagerFieldItem item) : base(originalArgs) {
            _pagerField = pagerField;
            _totalRowCount = totalRowCount; 
            _item = item;
        } 
 
        public DataPagerFieldItem Item {
            get { 
                return _item;
            }
        }
 
        public int NewMaximumRows {
            get { 
                return _newMaximumRows; 
            }
            set { 
                _newMaximumRows = value;
            }
        }
 
        public int NewStartRowIndex {
            get { 
                return _newStartRowIndex; 
            }
            set { 
                _newStartRowIndex = value;
            }
        }
 
        public DataPagerField PagerField {
            get { 
                return _pagerField; 
            }
        } 

        public int TotalRowCount {
            get {
                return _totalRowCount; 
            }
        } 
    } 
}

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