Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / xsp / System / Extensions / UI / WebControls / ListViewUpdateEventArgs.cs / 1305376 / ListViewUpdateEventArgs.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- using System; using System.Collections.Specialized; using System.ComponentModel; namespace System.Web.UI.WebControls { 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.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
- Directory.cs
- CodeTypeDeclaration.cs
- SingleAnimationBase.cs
- ProjectedSlot.cs
- DigitShape.cs
- PropertyGridView.cs
- DocumentSequence.cs
- DataViewManager.cs
- DropDownButton.cs
- PropertyDescriptorCollection.cs
- DesignerLoader.cs
- DataGridViewDataConnection.cs
- Currency.cs
- TableAdapterManagerNameHandler.cs
- XmlArrayAttribute.cs
- Messages.cs
- WebConfigurationHostFileChange.cs
- NativeMethods.cs
- CollectionViewGroup.cs
- StringOutput.cs
- SqlDependencyUtils.cs
- HwndHostAutomationPeer.cs
- GridViewDeletedEventArgs.cs
- RowUpdatingEventArgs.cs
- WizardStepBase.cs
- HtmlImage.cs
- DataGridViewTextBoxColumn.cs
- TextTreeUndo.cs
- EditingMode.cs
- ComMethodElementCollection.cs
- MenuItemBinding.cs
- SafeFileHandle.cs
- RemotingConfiguration.cs
- SizeConverter.cs
- DataFormats.cs
- CodeMemberProperty.cs
- EventRouteFactory.cs
- DefaultTextStoreTextComposition.cs
- TraceHandler.cs
- WebConfigurationManager.cs
- BinHexDecoder.cs
- WindowsAuthenticationModule.cs
- DataServiceSaveChangesEventArgs.cs
- WebPageTraceListener.cs
- ComAdminWrapper.cs
- GorillaCodec.cs
- UnknownMessageReceivedEventArgs.cs
- KeyedCollection.cs
- BindingManagerDataErrorEventArgs.cs
- ContainerFilterService.cs
- X509IssuerSerialKeyIdentifierClause.cs
- WaveHeader.cs
- WmlFormAdapter.cs
- UnhandledExceptionEventArgs.cs
- ResourceType.cs
- PasswordDeriveBytes.cs
- BoundConstants.cs
- InstalledFontCollection.cs
- SurrogateDataContract.cs
- SkewTransform.cs
- WpfXamlType.cs
- WebPartAuthorizationEventArgs.cs
- SiteMapNodeItemEventArgs.cs
- ObjectListItem.cs
- ListChunk.cs
- ComponentCommands.cs
- NamespaceInfo.cs
- MergeFilterQuery.cs
- Header.cs
- DataGridColumnsPage.cs
- RegistrationServices.cs
- XmlHelper.cs
- Random.cs
- sqlpipe.cs
- TimeEnumHelper.cs
- SortedList.cs
- PropertyIDSet.cs
- GridViewUpdatedEventArgs.cs
- XmlAttribute.cs
- TableItemStyle.cs
- AuthenticationModuleElement.cs
- WebPartZoneCollection.cs
- WorkflowOperationBehavior.cs
- MimeFormImporter.cs
- MsmqTransportReceiveParameters.cs
- EnlistmentState.cs
- TableLayoutCellPaintEventArgs.cs
- CfgArc.cs
- InputLangChangeEvent.cs
- DataGridSortCommandEventArgs.cs
- EmptyStringExpandableObjectConverter.cs
- Component.cs
- LinqDataSourceEditData.cs
- SymbolTable.cs
- ContextStack.cs
- EmptyReadOnlyDictionaryInternal.cs
- TdsParameterSetter.cs
- Filter.cs
- SystemIPGlobalProperties.cs
- FunctionCommandText.cs