Code:
/ FXUpdate3074 / FXUpdate3074 / 1.1 / untmp / whidbey / QFE / 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; } } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. // Copyright (c) Microsoft Corporation. All rights reserved.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
- GenerateTemporaryTargetAssembly.cs
- DataGridRelationshipRow.cs
- ItemsControlAutomationPeer.cs
- FunctionNode.cs
- TdsParameterSetter.cs
- DataSourceXmlElementAttribute.cs
- AggregateNode.cs
- XMLSchema.cs
- System.Data_BID.cs
- DbgCompiler.cs
- AsmxEndpointPickerExtension.cs
- ControlSerializer.cs
- Util.cs
- MimeTypeMapper.cs
- TypefaceCollection.cs
- _ProxyRegBlob.cs
- MasterPageBuildProvider.cs
- PipelineModuleStepContainer.cs
- Stack.cs
- UInt16Storage.cs
- BasicExpandProvider.cs
- ByteStorage.cs
- HttpCookieCollection.cs
- PermissionSetEnumerator.cs
- TextCollapsingProperties.cs
- GeneralTransformGroup.cs
- Int32.cs
- AttachedPropertyBrowsableForChildrenAttribute.cs
- ConstraintConverter.cs
- UpdatePanelTrigger.cs
- XPathScanner.cs
- PropertyBuilder.cs
- EventMappingSettings.cs
- LabelDesigner.cs
- WebServiceHostFactory.cs
- TempFiles.cs
- BitmapEncoder.cs
- FastEncoderWindow.cs
- Models.cs
- XmlRootAttribute.cs
- HttpHandlersInstallComponent.cs
- Timeline.cs
- ProgressiveCrcCalculatingStream.cs
- SamlAuthorizationDecisionClaimResource.cs
- TableLayoutColumnStyleCollection.cs
- GcHandle.cs
- DiscoveryEndpoint.cs
- NavigationService.cs
- LoadedEvent.cs
- RowsCopiedEventArgs.cs
- CodeDirectiveCollection.cs
- DrawingContextFlattener.cs
- ITextView.cs
- FieldBuilder.cs
- KerberosSecurityTokenAuthenticator.cs
- EncoderFallback.cs
- SQLGuidStorage.cs
- ASCIIEncoding.cs
- PathFigureCollection.cs
- ProviderConnectionPoint.cs
- RenderOptions.cs
- TextProperties.cs
- X509ThumbprintKeyIdentifierClause.cs
- ProfilePropertySettings.cs
- EraserBehavior.cs
- PropertySourceInfo.cs
- ConfigXmlText.cs
- ListBindingConverter.cs
- SplitContainer.cs
- MulticastOption.cs
- HtmlInputCheckBox.cs
- SafeProcessHandle.cs
- SBCSCodePageEncoding.cs
- ActionItem.cs
- RtfControls.cs
- hresults.cs
- DropDownHolder.cs
- AuthorizationRuleCollection.cs
- HttpResponseInternalWrapper.cs
- BlockingCollection.cs
- HttpInputStream.cs
- CalloutQueueItem.cs
- DBConnectionString.cs
- LoginCancelEventArgs.cs
- WebServiceData.cs
- QueryAsyncResult.cs
- MsmqTransportReceiveParameters.cs
- SafeNativeMethods.cs
- RequiredFieldValidator.cs
- MemberInitExpression.cs
- ToolBarButtonClickEvent.cs
- TrackingProfileCache.cs
- CryptoStream.cs
- IntellisenseTextBox.cs
- DesignerSerializerAttribute.cs
- XmlSchemaSimpleContent.cs
- NavigationCommands.cs
- NumberSubstitution.cs
- ContentPlaceHolder.cs
- SqlDataRecord.cs