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
- SystemNetworkInterface.cs
- SapiGrammar.cs
- Screen.cs
- TemplateBindingExpressionConverter.cs
- PropertyGridView.cs
- ArgumentNullException.cs
- ObsoleteAttribute.cs
- WaitForChangedResult.cs
- RecognizedPhrase.cs
- ArrayExtension.cs
- Assert.cs
- DragDeltaEventArgs.cs
- BitmapCodecInfo.cs
- SoapFault.cs
- PerformanceCounterCategory.cs
- TypeCacheManager.cs
- Dictionary.cs
- RightsManagementPermission.cs
- Pair.cs
- OracleConnectionString.cs
- AdornerLayer.cs
- XPathParser.cs
- X509Extension.cs
- ConnectionManagementElementCollection.cs
- ImageDrawing.cs
- ServiceDebugBehavior.cs
- InternalDuplexChannelFactory.cs
- ContentOperations.cs
- SQLDecimalStorage.cs
- SqlParameterCollection.cs
- Int64AnimationUsingKeyFrames.cs
- TryCatchDesigner.xaml.cs
- ViewStateChangedEventArgs.cs
- AttachedPropertyBrowsableAttribute.cs
- ListSortDescription.cs
- ComponentCollection.cs
- ExceptionRoutedEventArgs.cs
- PenCursorManager.cs
- HtmlInputText.cs
- RuntimeArgumentHandle.cs
- ArrayExtension.cs
- BeginCreateSecurityTokenRequest.cs
- ResXFileRef.cs
- WebBrowserEvent.cs
- TraceSection.cs
- SmiMetaDataProperty.cs
- StickyNote.cs
- EventLog.cs
- TypeConverter.cs
- GridViewPageEventArgs.cs
- NCryptNative.cs
- XmlSchemaImporter.cs
- LinqExpressionNormalizer.cs
- MonthChangedEventArgs.cs
- DbProviderFactories.cs
- WhitespaceRuleLookup.cs
- LogEntryUtils.cs
- ReadingWritingEntityEventArgs.cs
- CopyAttributesAction.cs
- ConfigurationSectionHelper.cs
- SamlSerializer.cs
- TextServicesManager.cs
- PublisherIdentityPermission.cs
- Rijndael.cs
- AndAlso.cs
- SrgsGrammarCompiler.cs
- TableStyle.cs
- MessageEncoderFactory.cs
- Simplifier.cs
- CharacterMetrics.cs
- SafeRightsManagementQueryHandle.cs
- DigestComparer.cs
- ZipPackage.cs
- CngProperty.cs
- DesignerToolStripControlHost.cs
- ListBoxItemAutomationPeer.cs
- OperatingSystem.cs
- StringCollectionMarkupSerializer.cs
- TransformerInfo.cs
- FactoryId.cs
- BitmapEffectDrawingContent.cs
- SmtpFailedRecipientsException.cs
- ConnectionInterfaceCollection.cs
- ValidatorCollection.cs
- Serializer.cs
- TextBounds.cs
- ErrorWrapper.cs
- SystemException.cs
- hresults.cs
- NavigationProperty.cs
- InstanceOwnerException.cs
- SoapElementAttribute.cs
- MsmqIntegrationProcessProtocolHandler.cs
- Int32AnimationBase.cs
- X509InitiatorCertificateServiceElement.cs
- ReflectionPermission.cs
- ProxyAttribute.cs
- recordstatefactory.cs
- BaseDataBoundControl.cs
- DataGridColumnHeaderItemAutomationPeer.cs