Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / xsp / System / Extensions / UI / WebControls / DataPagerCommandEventArgs.cs / 1305376 / DataPagerCommandEventArgs.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- using System; using System.Diagnostics.CodeAnalysis; namespace System.Web.UI.WebControls { 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.
Link Menu
This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- FixedNode.cs
- LinqDataSourceView.cs
- DictionaryEntry.cs
- SQLRoleProvider.cs
- StateWorkerRequest.cs
- EntitySet.cs
- PerspectiveCamera.cs
- CryptoApi.cs
- WpfPayload.cs
- ActivityValidationServices.cs
- AutomationTextAttribute.cs
- ClientBase.cs
- SByte.cs
- ProcessHostFactoryHelper.cs
- FilteredXmlReader.cs
- XmlSerializer.cs
- SecurityListenerSettingsLifetimeManager.cs
- RepeatButton.cs
- ReadOnlyObservableCollection.cs
- UntrustedRecipientException.cs
- MouseDevice.cs
- OperationInfo.cs
- NullableFloatSumAggregationOperator.cs
- HttpResponse.cs
- PathFigure.cs
- ProxyHwnd.cs
- SqlSelectStatement.cs
- DiffuseMaterial.cs
- SingleStorage.cs
- BinaryObjectInfo.cs
- TextTreeRootTextBlock.cs
- ReliabilityContractAttribute.cs
- CompilerScope.cs
- XmlEncodedRawTextWriter.cs
- ArgumentValue.cs
- NativeMethods.cs
- SpecularMaterial.cs
- BaseHashHelper.cs
- SByte.cs
- Logging.cs
- listitem.cs
- BinaryConverter.cs
- ToolStripDesignerAvailabilityAttribute.cs
- DesignTimeParseData.cs
- ConfigurationManagerHelperFactory.cs
- PageBreakRecord.cs
- HttpConfigurationSystem.cs
- DbInsertCommandTree.cs
- AutomationIdentifier.cs
- ComponentManagerBroker.cs
- ProgressBar.cs
- XmlWrappingReader.cs
- ComponentEvent.cs
- KeyedCollection.cs
- Drawing.cs
- EffectiveValueEntry.cs
- HMACSHA1.cs
- XmlAnyAttributeAttribute.cs
- OwnerDrawPropertyBag.cs
- UInt16.cs
- MessageQueueKey.cs
- UriTemplateClientFormatter.cs
- AtlasWeb.Designer.cs
- XmlAttributeOverrides.cs
- ColorContextHelper.cs
- FontSource.cs
- EventArgs.cs
- WebUtil.cs
- IdentityReference.cs
- ProviderSettings.cs
- BamlRecordReader.cs
- ArgumentException.cs
- QuaternionAnimation.cs
- GridViewRowCollection.cs
- DataPager.cs
- XmlToDatasetMap.cs
- SmiEventSink_DeferedProcessing.cs
- PkcsUtils.cs
- DesignerToolStripControlHost.cs
- DSACryptoServiceProvider.cs
- XamlHostingSection.cs
- PropertyInfoSet.cs
- MsmqProcessProtocolHandler.cs
- NonBatchDirectoryCompiler.cs
- SqlConnectionPoolGroupProviderInfo.cs
- ParentControlDesigner.cs
- AccessedThroughPropertyAttribute.cs
- EntitySqlQueryCacheEntry.cs
- LazyInitializer.cs
- serverconfig.cs
- webbrowsersite.cs
- RecognizerInfo.cs
- Canvas.cs
- OutputScope.cs
- ThumbAutomationPeer.cs
- DetailsViewModeEventArgs.cs
- RtfToken.cs
- PerformanceCounterManager.cs
- CacheModeConverter.cs
- TextRunProperties.cs