Code:
/ Net / Net / 3.5.50727.3053 / DEVDIV / depot / DevDiv / releases / whidbey / netfxsp / ndp / fx / src / xsp / System / Web / UI / WebControls / FormViewDeleteEventArgs.cs / 1 / 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; using System.Security.Permissions; ////// [AspNetHostingPermission(SecurityAction.LinkDemand, Level=AspNetHostingPermissionLevel.Minimal)] [AspNetHostingPermission(SecurityAction.InheritanceDemand, Level=AspNetHostingPermissionLevel.Minimal)] 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; using System.Security.Permissions; ////// [AspNetHostingPermission(SecurityAction.LinkDemand, Level=AspNetHostingPermissionLevel.Minimal)] [AspNetHostingPermission(SecurityAction.InheritanceDemand, Level=AspNetHostingPermissionLevel.Minimal)] 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
- SoundPlayer.cs
- TemplateField.cs
- CheckBox.cs
- CompilerTypeWithParams.cs
- DynamicActivityXamlReader.cs
- QueryOutputWriter.cs
- ControlBuilderAttribute.cs
- InheritedPropertyChangedEventArgs.cs
- SerialErrors.cs
- LongTypeConverter.cs
- SHA1.cs
- MetadataLocation.cs
- GPRECTF.cs
- TypeBuilderInstantiation.cs
- PathGeometry.cs
- OleDbException.cs
- XamlSerializerUtil.cs
- complextypematerializer.cs
- ValidatorCompatibilityHelper.cs
- CompilerHelpers.cs
- TdsValueSetter.cs
- IteratorDescriptor.cs
- XmlHierarchyData.cs
- ETagAttribute.cs
- ParameterCollection.cs
- CatalogPartCollection.cs
- CodeExpressionCollection.cs
- InstancePersistenceContext.cs
- SByte.cs
- PrintEvent.cs
- UserControlBuildProvider.cs
- Exceptions.cs
- SetterBase.cs
- ResourcePool.cs
- XPathParser.cs
- GenericIdentity.cs
- CancellationToken.cs
- _NegotiateClient.cs
- IEnumerable.cs
- PaintEvent.cs
- ReferenceService.cs
- FileSystemEventArgs.cs
- HttpException.cs
- JulianCalendar.cs
- ButtonChrome.cs
- ACL.cs
- RefreshEventArgs.cs
- RewritingPass.cs
- HttpListenerRequestUriBuilder.cs
- ApplicationSecurityInfo.cs
- documentsequencetextpointer.cs
- NamespaceList.cs
- Win32.cs
- LoginCancelEventArgs.cs
- X509Chain.cs
- LingerOption.cs
- QueryInterceptorAttribute.cs
- LocationFactory.cs
- LambdaCompiler.Binary.cs
- UnsafeNativeMethods.cs
- VisualStyleRenderer.cs
- ExpressionBuilder.cs
- WindowsSolidBrush.cs
- PublisherIdentityPermission.cs
- PriorityBinding.cs
- ReliableChannelBinder.cs
- PersonalizationProviderCollection.cs
- StringFormat.cs
- RawStylusInputCustomData.cs
- SourceChangedEventArgs.cs
- TypeConverterHelper.cs
- DetailsViewDeletedEventArgs.cs
- GenericWebPart.cs
- SessionPageStateSection.cs
- DataControlButton.cs
- WebBrowser.cs
- ImageClickEventArgs.cs
- MultiDataTrigger.cs
- WebEvents.cs
- MD5.cs
- BitSet.cs
- DayRenderEvent.cs
- TemplateBindingExpressionConverter.cs
- ReadOnlyDictionary.cs
- MLangCodePageEncoding.cs
- EntityContainer.cs
- DataSourceView.cs
- HttpCapabilitiesEvaluator.cs
- TriState.cs
- WorkflowInstanceContextProvider.cs
- DesignerDataTable.cs
- InstanceView.cs
- Misc.cs
- FastEncoderWindow.cs
- DataGridViewColumnStateChangedEventArgs.cs
- StandardOleMarshalObject.cs
- DbUpdateCommandTree.cs
- HttpChannelListener.cs
- RawUIStateInputReport.cs
- RowCache.cs