Code:
/ 4.0 / 4.0 / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / xsp / System / Web / UI / WebControls / FormViewDeleteEventArgs.cs / 1305376 / FormViewDeleteEventArgs.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; ////// public class FormViewDeleteEventArgs : CancelEventArgs { private int _rowIndex; private OrderedDictionary _keys; private OrderedDictionary _values; ///Provides data for some ///events. /// public FormViewDeleteEventArgs(int rowIndex) : base(false) { this._rowIndex = rowIndex; } public int RowIndex { get { return _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 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; ////// public class FormViewDeleteEventArgs : CancelEventArgs { private int _rowIndex; private OrderedDictionary _keys; private OrderedDictionary _values; ///Provides data for some ///events. /// public FormViewDeleteEventArgs(int rowIndex) : base(false) { this._rowIndex = rowIndex; } public int RowIndex { get { return _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 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
- Vector.cs
- SynchronousSendBindingElement.cs
- TcpWorkerProcess.cs
- TypeForwardedToAttribute.cs
- UrlPath.cs
- RouteItem.cs
- IntPtr.cs
- BindingMAnagerBase.cs
- Point.cs
- DataGridViewTopRowAccessibleObject.cs
- SecurityUtils.cs
- ValidationService.cs
- InlineCollection.cs
- AutomationElementCollection.cs
- BaseContextMenu.cs
- TemplateManager.cs
- TypedTableBaseExtensions.cs
- ExpandCollapseProviderWrapper.cs
- ClonableStack.cs
- TriggerAction.cs
- DataBoundControlHelper.cs
- EnumValAlphaComparer.cs
- UnsafeNativeMethods.cs
- FloaterBaseParagraph.cs
- ToolStripControlHost.cs
- BaseResourcesBuildProvider.cs
- ArrangedElement.cs
- OleDbDataReader.cs
- UriTemplatePathSegment.cs
- GradientBrush.cs
- Relationship.cs
- StorageConditionPropertyMapping.cs
- ExecutedRoutedEventArgs.cs
- WindowsHyperlink.cs
- DetailsViewPagerRow.cs
- SqlMethodCallConverter.cs
- IDReferencePropertyAttribute.cs
- BooleanStorage.cs
- BooleanKeyFrameCollection.cs
- EncoderParameter.cs
- SerializationObjectManager.cs
- FeatureSupport.cs
- StylusButton.cs
- DuplicateContext.cs
- EntityProviderServices.cs
- WebSysDescriptionAttribute.cs
- ProvideValueServiceProvider.cs
- TextContainerChangedEventArgs.cs
- SpeakProgressEventArgs.cs
- MulticastIPAddressInformationCollection.cs
- SortKey.cs
- ScalarOps.cs
- DatatypeImplementation.cs
- XmlSchemaComplexContent.cs
- SqlConnection.cs
- VisualTarget.cs
- ReachNamespaceInfo.cs
- AssemblyAttributesGoHere.cs
- CounterSampleCalculator.cs
- Profiler.cs
- EntityTypeEmitter.cs
- EventPrivateKey.cs
- WaitForChangedResult.cs
- CustomAttributeFormatException.cs
- LineServices.cs
- MetabaseServerConfig.cs
- MD5CryptoServiceProvider.cs
- ListItemsPage.cs
- SubclassTypeValidator.cs
- FacetChecker.cs
- MediaElementAutomationPeer.cs
- SettingsSection.cs
- DataControlButton.cs
- IntegerFacetDescriptionElement.cs
- XmlIlGenerator.cs
- ServiceOperation.cs
- MetadataHelper.cs
- StringValidatorAttribute.cs
- SetterBase.cs
- RMEnrollmentPage2.cs
- FileDataSourceCache.cs
- DBSchemaTable.cs
- SQLDoubleStorage.cs
- ProfileService.cs
- AdornerPresentationContext.cs
- DataGridPageChangedEventArgs.cs
- HwndKeyboardInputProvider.cs
- FormViewModeEventArgs.cs
- Command.cs
- OdbcParameterCollection.cs
- listviewsubitemcollectioneditor.cs
- PassportAuthentication.cs
- EventProvider.cs
- Int64AnimationUsingKeyFrames.cs
- FixedStringLookup.cs
- Effect.cs
- StorageEntitySetMapping.cs
- UIElement3D.cs
- ManagedFilter.cs
- TransactionTable.cs