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
- KeyValuePair.cs
- FixedTextView.cs
- RelativeSource.cs
- HttpCapabilitiesBase.cs
- ToolstripProfessionalRenderer.cs
- DocumentStream.cs
- PageBreakRecord.cs
- EndpointAddressMessageFilterTable.cs
- RecognizerBase.cs
- XslTransform.cs
- ScrollItemProviderWrapper.cs
- TreeView.cs
- Base64Encoder.cs
- XsltContext.cs
- FormViewRow.cs
- MultiByteCodec.cs
- HtmlInputCheckBox.cs
- EventLogTraceListener.cs
- LocatorPart.cs
- CardSpaceSelector.cs
- SqlDataSourceStatusEventArgs.cs
- SqlDataSourceView.cs
- FileDialog_Vista_Interop.cs
- MailMessageEventArgs.cs
- ChildTable.cs
- SamlSubject.cs
- Win32KeyboardDevice.cs
- Thumb.cs
- CheckBoxList.cs
- EncoderParameters.cs
- MonitorWrapper.cs
- FontNamesConverter.cs
- QueryCursorEventArgs.cs
- DialogResultConverter.cs
- Translator.cs
- TemplatePropertyEntry.cs
- DeclarativeCatalogPart.cs
- DictionaryContent.cs
- FixedSchema.cs
- XPathNavigatorReader.cs
- RichTextBox.cs
- CmsInterop.cs
- MultiPageTextView.cs
- ClientSession.cs
- FixedSOMContainer.cs
- RealProxy.cs
- UICuesEvent.cs
- RequestTimeoutManager.cs
- ChangeDirector.cs
- CurrencyWrapper.cs
- Registry.cs
- FlowDocumentView.cs
- UnsafeMethods.cs
- SafeProcessHandle.cs
- RemotingClientProxy.cs
- DnsEndPoint.cs
- DataGridColumnFloatingHeader.cs
- StyleBamlRecordReader.cs
- DbReferenceCollection.cs
- UIPermission.cs
- FileAuthorizationModule.cs
- WebResponse.cs
- ObjectItemAttributeAssemblyLoader.cs
- TextBoxAutoCompleteSourceConverter.cs
- WindowsGraphics.cs
- TextServicesCompartmentContext.cs
- PeerTransportListenAddressValidator.cs
- Renderer.cs
- EntityConnectionStringBuilder.cs
- ComPersistableTypeElementCollection.cs
- FileRecordSequence.cs
- ResourceDescriptionAttribute.cs
- hresults.cs
- Clause.cs
- AddInStore.cs
- HtmlContainerControl.cs
- DataRowExtensions.cs
- IdnMapping.cs
- CharacterBuffer.cs
- AutomationPatternInfo.cs
- Point3DCollectionConverter.cs
- SizeChangedInfo.cs
- Color.cs
- BufferModesCollection.cs
- EndEvent.cs
- GridViewUpdatedEventArgs.cs
- NumberSubstitution.cs
- SQLInt32Storage.cs
- UInt32.cs
- DetailsViewPagerRow.cs
- HtmlInputPassword.cs
- SkewTransform.cs
- BuildManager.cs
- EntityStoreSchemaFilterEntry.cs
- EventMap.cs
- XamlInt32CollectionSerializer.cs
- SqlInternalConnectionSmi.cs
- GacUtil.cs
- SamlAuthorityBinding.cs
- TempEnvironment.cs