Code:
/ DotNET / DotNET / 8.0 / untmp / whidbey / REDBITS / ndp / fx / src / xsp / System / Web / UI / WebControls / GridViewUpdateEventArgs.cs / 1 / GridViewUpdateEventArgs.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- /* */ namespace System.Web.UI.WebControls { using System; using System.Collections; using System.Collections.Specialized; using System.ComponentModel; using System.Security.Permissions; ////// [AspNetHostingPermission(SecurityAction.LinkDemand, Level=AspNetHostingPermissionLevel.Minimal)] [AspNetHostingPermission(SecurityAction.InheritanceDemand, Level=AspNetHostingPermissionLevel.Minimal)] public class GridViewUpdateEventArgs : CancelEventArgs { private int _rowIndex; private OrderedDictionary _values; private OrderedDictionary _keys; private OrderedDictionary _oldValues; ///Provides data for some ///events. /// public GridViewUpdateEventArgs(int rowIndex) : base(false) { this._rowIndex = rowIndex; } ///Initializes a new instance of the ////// class. /// 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; } } ///Gets a OrderedDictionary to populate with pre-edit row values. This property is read-only. ////// public int RowIndex { get { return _rowIndex; } } } }Gets the int argument to the command posted to the ///. This property is read-only.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- ValueProviderWrapper.cs
- BaseTemplateCodeDomTreeGenerator.cs
- ObjectViewListener.cs
- ListBindingHelper.cs
- Button.cs
- TemplateParser.cs
- XamlInt32CollectionSerializer.cs
- NodeFunctions.cs
- DiagnosticTraceSource.cs
- ProcessMonitor.cs
- SimpleBitVector32.cs
- AssemblyName.cs
- MultipartContentParser.cs
- WinHttpWebProxyFinder.cs
- recordstate.cs
- BindMarkupExtensionSerializer.cs
- VirtualDirectoryMapping.cs
- DataGridViewColumnHeaderCell.cs
- DSACryptoServiceProvider.cs
- AddInEnvironment.cs
- D3DImage.cs
- CaseInsensitiveHashCodeProvider.cs
- CustomErrorsSection.cs
- PropertyChangeTracker.cs
- BindValidationContext.cs
- ValidatorCompatibilityHelper.cs
- EventLog.cs
- DescendantOverDescendantQuery.cs
- DetailsViewRowCollection.cs
- GridViewSortEventArgs.cs
- CodeTypeMember.cs
- GridViewColumnCollectionChangedEventArgs.cs
- BitmapEncoder.cs
- ObjectListTitleAttribute.cs
- SoapSchemaExporter.cs
- assertwrapper.cs
- SqlDataSource.cs
- UmAlQuraCalendar.cs
- FormViewCommandEventArgs.cs
- UnicodeEncoding.cs
- RowBinding.cs
- RegexMatch.cs
- CodeArgumentReferenceExpression.cs
- RectKeyFrameCollection.cs
- X509CertificateCollection.cs
- AffineTransform3D.cs
- SqlConnectionString.cs
- XmlSerializerVersionAttribute.cs
- EndpointReference.cs
- XamlToRtfParser.cs
- QilLiteral.cs
- RectangleHotSpot.cs
- TraceContextRecord.cs
- EmptyCollection.cs
- XsdDuration.cs
- Imaging.cs
- MILUtilities.cs
- SymLanguageType.cs
- InkPresenterAutomationPeer.cs
- login.cs
- SkewTransform.cs
- LineProperties.cs
- ScriptModule.cs
- Constraint.cs
- DrawTreeNodeEventArgs.cs
- TargetConverter.cs
- SQlBooleanStorage.cs
- AutoGeneratedFieldProperties.cs
- PopupRootAutomationPeer.cs
- DataProtection.cs
- AssemblyHash.cs
- FontFamily.cs
- TextFormatterContext.cs
- ProfileService.cs
- SortQuery.cs
- ToolStripStatusLabel.cs
- BaseValidator.cs
- XmlLanguage.cs
- Pair.cs
- OutputScopeManager.cs
- AnnotationMap.cs
- GridViewSortEventArgs.cs
- EpmContentDeSerializerBase.cs
- ChainOfResponsibility.cs
- WindowsTab.cs
- LabelInfo.cs
- XamlClipboardData.cs
- MonikerProxyAttribute.cs
- Wizard.cs
- PasswordRecovery.cs
- IListConverters.cs
- Attributes.cs
- FileLoadException.cs
- WebPartConnectionsCancelEventArgs.cs
- Unit.cs
- FolderBrowserDialog.cs
- DataSetMappper.cs
- CompilationUtil.cs
- PenContexts.cs
- WorkItem.cs