Code:
/ DotNET / DotNET / 8.0 / untmp / Orcas / RTM / ndp / fx / src / xsp / System / Web / Extensions / ui / webcontrols / ListViewUpdateEventArgs.cs / 1 / ListViewUpdateEventArgs.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- using System; using System.Collections.Specialized; using System.ComponentModel; 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 ListViewUpdateEventArgs : CancelEventArgs { private int _itemIndex; private OrderedDictionary _values; private OrderedDictionary _keys; private OrderedDictionary _oldValues; public ListViewUpdateEventArgs(int itemIndex) { _itemIndex = itemIndex; } ////// public int ItemIndex { get { return _itemIndex; } } ///Gets the int argument to the command posted to the ///. This property is read-only. /// public IOrderedDictionary Keys { get { if (_keys == null) { _keys = new OrderedDictionary(); } return _keys; } } ///Gets a keyed list to populate with updated row values. This property is read-only. ////// public IOrderedDictionary NewValues { get { if (_values == null) { _values = new OrderedDictionary(); } return _values; } } ///Gets a OrderedDictionary to populate with updated row values. This property is read-only. ////// public IOrderedDictionary OldValues { get { if (_oldValues == null) { _oldValues = new OrderedDictionary(); } return _oldValues; } } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. // Copyright (c) Microsoft Corporation. All rights reserved.Gets a OrderedDictionary to populate with pre-edit row values. This property is read-only. ///
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- FormViewUpdatedEventArgs.cs
- WindowsComboBox.cs
- UnauthorizedAccessException.cs
- BitSet.cs
- VScrollProperties.cs
- RsaSecurityTokenParameters.cs
- GrammarBuilderRuleRef.cs
- TimeSpanMinutesOrInfiniteConverter.cs
- Cell.cs
- ListBoxItemWrapperAutomationPeer.cs
- InputScopeConverter.cs
- DataGridViewMethods.cs
- ApplicationDirectory.cs
- OdbcException.cs
- ColumnHeader.cs
- Int32Animation.cs
- PrintDialog.cs
- CollectionViewSource.cs
- ViewGenerator.cs
- SegmentInfo.cs
- _ScatterGatherBuffers.cs
- ProgressChangedEventArgs.cs
- ImageCodecInfo.cs
- Missing.cs
- SortKey.cs
- NameNode.cs
- ProcessInfo.cs
- AccessDataSourceDesigner.cs
- designeractionbehavior.cs
- DropDownList.cs
- DebugView.cs
- BooleanAnimationBase.cs
- ContentElementAutomationPeer.cs
- SymbolEqualComparer.cs
- BinaryReader.cs
- SqlGatherProducedAliases.cs
- WebPartDisplayModeCollection.cs
- ThreadInterruptedException.cs
- Attributes.cs
- SendSecurityHeader.cs
- ipaddressinformationcollection.cs
- WindowsListViewScroll.cs
- WebPartUserCapability.cs
- PermissionSetEnumerator.cs
- GridViewHeaderRowPresenter.cs
- ButtonPopupAdapter.cs
- OnOperation.cs
- PropertyGridEditorPart.cs
- OracleColumn.cs
- PlatformCulture.cs
- Semaphore.cs
- XmlNamespaceMappingCollection.cs
- XmlBinaryWriter.cs
- FormsAuthenticationConfiguration.cs
- AsnEncodedData.cs
- NullableFloatAverageAggregationOperator.cs
- SafeNativeMethods.cs
- NullExtension.cs
- InfoCardTrace.cs
- SimpleModelProvider.cs
- ResourceDictionaryCollection.cs
- SqlXmlStorage.cs
- ObjectListItem.cs
- LogWriteRestartAreaAsyncResult.cs
- ColorAnimationUsingKeyFrames.cs
- InternalTransaction.cs
- OdbcException.cs
- SafeNativeMethods.cs
- ConfigurationSection.cs
- CapiSafeHandles.cs
- BaseValidatorDesigner.cs
- BinaryObjectReader.cs
- PrivilegedConfigurationManager.cs
- ValueType.cs
- DataGridState.cs
- ProtocolElement.cs
- RowCache.cs
- XmlImplementation.cs
- InvalidCastException.cs
- Debug.cs
- TextServicesCompartmentContext.cs
- HtmlInputSubmit.cs
- HostingEnvironmentSection.cs
- DBSqlParser.cs
- SystemUdpStatistics.cs
- OracleBinary.cs
- PieceNameHelper.cs
- UIElement.cs
- SqlBulkCopy.cs
- SpellerStatusTable.cs
- OrElse.cs
- DynamicHyperLink.cs
- ServiceOperationHelpers.cs
- NavigationProgressEventArgs.cs
- HTTPNotFoundHandler.cs
- Int32Storage.cs
- WrappedIUnknown.cs
- ServiceDescriptionImporter.cs
- SessionIDManager.cs
- PermissionRequestEvidence.cs