Code:
/ Dotnetfx_Vista_SP2 / Dotnetfx_Vista_SP2 / 8.0.50727.4016 / DEVDIV / depot / DevDiv / releases / whidbey / NetFxQFE / ndp / fx / src / xsp / System / Web / UI / WebControls / GridViewDeleteEventArgs.cs / 1 / GridViewDeleteEventArgs.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 GridViewDeleteEventArgs : CancelEventArgs { private int _rowIndex; private OrderedDictionary _keys; private OrderedDictionary _values; public GridViewDeleteEventArgs(int rowIndex) : base(false) { this._rowIndex = rowIndex; } public int RowIndex { get { return _rowIndex; } } ///Provides data for some ///events. /// public IOrderedDictionary Keys { get { if (_keys == null) { _keys = new OrderedDictionary(); } return _keys; } } ///Gets a keyed list to populate with parameters that identify the row to delete. This property is read-only. ////// public IOrderedDictionary Values { get { if (_values == null) { _values = new OrderedDictionary(); } return _values; } } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. //------------------------------------------------------------------------------ //Gets a keyed list to populate with old row values. This property is read-only. ///// 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 GridViewDeleteEventArgs : CancelEventArgs { private int _rowIndex; private OrderedDictionary _keys; private OrderedDictionary _values; public GridViewDeleteEventArgs(int rowIndex) : base(false) { this._rowIndex = rowIndex; } public int RowIndex { get { return _rowIndex; } } ///Provides data for some ///events. /// public IOrderedDictionary Keys { get { if (_keys == null) { _keys = new OrderedDictionary(); } return _keys; } } ///Gets a keyed list to populate with parameters that identify the row to delete. This property is read-only. ////// public IOrderedDictionary Values { get { if (_values == null) { _values = new OrderedDictionary(); } return _values; } } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007.Gets a keyed list to populate with old row values. This property is read-only. ///
Link Menu
This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- PerformanceCounterManager.cs
- RoleBoolean.cs
- EqualityComparer.cs
- SettingsPropertyCollection.cs
- ISAPIWorkerRequest.cs
- DurableRuntimeValidator.cs
- AccessDataSource.cs
- AspCompat.cs
- VisualBasicExpressionConverter.cs
- MinMaxParagraphWidth.cs
- EditorAttribute.cs
- ChangePassword.cs
- WebPartTransformer.cs
- TextTreeObjectNode.cs
- SamlSubject.cs
- DataGridDetailsPresenterAutomationPeer.cs
- BufferAllocator.cs
- xml.cs
- CodeMethodReturnStatement.cs
- GeneralTransform.cs
- TextViewBase.cs
- SizeAnimationClockResource.cs
- DelegatingTypeDescriptionProvider.cs
- PropertyChangingEventArgs.cs
- SettingsPropertyNotFoundException.cs
- ExtractorMetadata.cs
- lengthconverter.cs
- SqlRowUpdatedEvent.cs
- XmlSchemaObjectCollection.cs
- GridViewUpdatedEventArgs.cs
- ClientBuildManager.cs
- RegisteredArrayDeclaration.cs
- ScrollData.cs
- Cursors.cs
- CatalogPartCollection.cs
- DefaultAssemblyResolver.cs
- xmlformatgeneratorstatics.cs
- DataShape.cs
- RequestQueue.cs
- TypeDescriptionProvider.cs
- WindowsAuthenticationEventArgs.cs
- SetState.cs
- Pair.cs
- ValidationErrorEventArgs.cs
- TypeToStringValueConverter.cs
- Delegate.cs
- GlyphTypeface.cs
- entitydatasourceentitysetnameconverter.cs
- SystemIdentity.cs
- DiagnosticsConfiguration.cs
- HitTestWithPointDrawingContextWalker.cs
- Dispatcher.cs
- RequiredFieldValidator.cs
- DeclaredTypeElementCollection.cs
- DesignerSerializerAttribute.cs
- AdjustableArrowCap.cs
- GradientBrush.cs
- RepeatButtonAutomationPeer.cs
- CompoundFileReference.cs
- ValueExpressions.cs
- SqlFacetAttribute.cs
- HostingEnvironmentWrapper.cs
- IDispatchConstantAttribute.cs
- EmbeddedMailObject.cs
- PriorityBindingExpression.cs
- QilLiteral.cs
- DataGridHeaderBorder.cs
- NavigationHelper.cs
- DataViewSettingCollection.cs
- SocketElement.cs
- ParameterDataSourceExpression.cs
- UserNamePasswordValidator.cs
- DataPagerFieldCollection.cs
- CipherData.cs
- AttachmentCollection.cs
- DataGridSortCommandEventArgs.cs
- Inline.cs
- StorageModelBuildProvider.cs
- XmlSchemaSequence.cs
- ConfigXmlWhitespace.cs
- FigureHelper.cs
- CasesDictionary.cs
- DescriptionAttribute.cs
- SecureConversationDriver.cs
- HMACSHA256.cs
- ZipIOExtraFieldPaddingElement.cs
- WindowClosedEventArgs.cs
- ImplicitInputBrush.cs
- Subtree.cs
- DesignerLoader.cs
- FileEnumerator.cs
- FormsAuthenticationConfiguration.cs
- TransformerTypeCollection.cs
- ImageAnimator.cs
- Util.cs
- FontWeight.cs
- ClickablePoint.cs
- DPCustomTypeDescriptor.cs
- PeerPresenceInfo.cs
- MouseActionValueSerializer.cs