Code:
/ Net / Net / 3.5.50727.3053 / DEVDIV / depot / DevDiv / releases / whidbey / netfxsp / 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
- HitTestParameters3D.cs
- mda.cs
- AppearanceEditorPart.cs
- UniqueEventHelper.cs
- EdmProperty.cs
- GrammarBuilderPhrase.cs
- CodeNamespaceImport.cs
- GreenMethods.cs
- FormsAuthenticationUserCollection.cs
- ReadOnlyDataSourceView.cs
- ViewStateException.cs
- TypefaceMetricsCache.cs
- AutomationPeer.cs
- SmtpNtlmAuthenticationModule.cs
- OutputCacheModule.cs
- TemplateBuilder.cs
- Win32KeyboardDevice.cs
- FrameworkTemplate.cs
- IssuedTokenClientCredential.cs
- ButtonChrome.cs
- safex509handles.cs
- ellipse.cs
- SizeConverter.cs
- EnumMember.cs
- safex509handles.cs
- SafeLocalMemHandle.cs
- TextRange.cs
- GeometryValueSerializer.cs
- ObjectDataSourceStatusEventArgs.cs
- XmlSchemaComplexContent.cs
- PersonalizationDictionary.cs
- ReadOnlyHierarchicalDataSource.cs
- StringTraceRecord.cs
- DynamicValidatorEventArgs.cs
- CqlParser.cs
- UIElementHelper.cs
- Config.cs
- OracleBoolean.cs
- ProxyWebPartManager.cs
- FormattedTextSymbols.cs
- DetailsViewPageEventArgs.cs
- LayoutTable.cs
- TextViewDesigner.cs
- GeometryDrawing.cs
- DataRelationCollection.cs
- WebPartTransformerCollection.cs
- MultiByteCodec.cs
- AttributeQuery.cs
- PenLineJoinValidation.cs
- ConfigurationPermission.cs
- ElementHostPropertyMap.cs
- EditingMode.cs
- ParsedAttributeCollection.cs
- FixedPageStructure.cs
- SQLDouble.cs
- WindowManager.cs
- DispatchWrapper.cs
- ProcessInfo.cs
- LeaseManager.cs
- MethodToken.cs
- ServiceDescriptions.cs
- ControlBindingsCollection.cs
- RestHandler.cs
- HashHelper.cs
- PointAnimationUsingKeyFrames.cs
- XmlDataDocument.cs
- Condition.cs
- AnimatedTypeHelpers.cs
- WebPartDisplayModeEventArgs.cs
- ReadOnlyDataSourceView.cs
- XmlHelper.cs
- NominalTypeEliminator.cs
- WorkflowViewManager.cs
- RoutedEventValueSerializer.cs
- TabControl.cs
- ExecutionContext.cs
- GPRECTF.cs
- PasswordDeriveBytes.cs
- XsltArgumentList.cs
- MsmqIntegrationInputChannel.cs
- XdrBuilder.cs
- SafeRightsManagementSessionHandle.cs
- TextTreeUndoUnit.cs
- LocalizableResourceBuilder.cs
- SpeakProgressEventArgs.cs
- LineServicesCallbacks.cs
- DockEditor.cs
- Trustee.cs
- HttpModulesSection.cs
- XPathDescendantIterator.cs
- DataTableTypeConverter.cs
- TimeSpanConverter.cs
- FontStretchConverter.cs
- DPCustomTypeDescriptor.cs
- DesignerInterfaces.cs
- MessageHeaderException.cs
- FunctionQuery.cs
- Processor.cs
- Transform3DGroup.cs
- GACIdentityPermission.cs