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
- AdPostCacheSubstitution.cs
- DataBindingList.cs
- View.cs
- LinearGradientBrush.cs
- cryptoapiTransform.cs
- PageCanvasSize.cs
- Funcletizer.cs
- HttpCachePolicyElement.cs
- XPathScanner.cs
- RSAPKCS1KeyExchangeFormatter.cs
- ProtocolsSection.cs
- LookupNode.cs
- SchemaSetCompiler.cs
- InvalidateEvent.cs
- DataGridViewCellErrorTextNeededEventArgs.cs
- ErrorLog.cs
- PropertiesTab.cs
- ScrollEventArgs.cs
- ClientBuildManager.cs
- XmlSortKey.cs
- XmlQueryContext.cs
- DataRowCollection.cs
- HandleDictionary.cs
- ScriptResourceMapping.cs
- WorkflowValidationFailedException.cs
- ScopelessEnumAttribute.cs
- ScopelessEnumAttribute.cs
- SoapSchemaImporter.cs
- Publisher.cs
- PersonalizationStateInfo.cs
- DataGridTableCollection.cs
- RelationshipNavigation.cs
- StateWorkerRequest.cs
- QuerySettings.cs
- unsafeIndexingFilterStream.cs
- Matrix.cs
- AssemblyNameProxy.cs
- XmlMapping.cs
- ProgressBarRenderer.cs
- TextBounds.cs
- Ray3DHitTestResult.cs
- SqlCacheDependencyDatabase.cs
- StringFormat.cs
- ThreadExceptionDialog.cs
- GlyphingCache.cs
- ActivityInstance.cs
- FrameworkContextData.cs
- DataGridAutomationPeer.cs
- AutoSizeToolBoxItem.cs
- ToolStripProgressBar.cs
- CleanUpVirtualizedItemEventArgs.cs
- QilInvokeEarlyBound.cs
- ComponentChangingEvent.cs
- TextWriter.cs
- RequestCachingSection.cs
- OutputCacheProfileCollection.cs
- TypeInfo.cs
- Scalars.cs
- DragEventArgs.cs
- MostlySingletonList.cs
- CachedPathData.cs
- TransformGroup.cs
- ParserStreamGeometryContext.cs
- Registry.cs
- panel.cs
- AnimationClockResource.cs
- Page.cs
- TraceData.cs
- NamespaceList.cs
- _ListenerRequestStream.cs
- HtmlHead.cs
- ComboBoxItem.cs
- ConfigsHelper.cs
- CellRelation.cs
- SQLInt16Storage.cs
- DispatcherEventArgs.cs
- IsolatedStorageFilePermission.cs
- WaitHandle.cs
- CheckBoxBaseAdapter.cs
- MostlySingletonList.cs
- BinaryMethodMessage.cs
- CodeCastExpression.cs
- TemplatePropertyEntry.cs
- DebugInfoExpression.cs
- ContainerControl.cs
- UrlMappingCollection.cs
- CaseInsensitiveHashCodeProvider.cs
- ClientConfigurationHost.cs
- FlatButtonAppearance.cs
- ContractCodeDomInfo.cs
- SnapLine.cs
- IsolatedStorageFileStream.cs
- UrlMappingsSection.cs
- DataGridViewUtilities.cs
- NamespaceQuery.cs
- WebMessageBodyStyleHelper.cs
- MailAddress.cs
- CapiNative.cs
- Symbol.cs
- Drawing.cs