Code:
/ Dotnetfx_Win7_3.5.1 / Dotnetfx_Win7_3.5.1 / 3.5.1 / DEVDIV / depot / DevDiv / releases / whidbey / NetFXspW7 / ndp / fx / src / xsp / System / Web / UI / WebControls / DetailsViewDeleteEventArgs.cs / 1 / DetailsViewDeleteEventArgs.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 DetailsViewDeleteEventArgs : CancelEventArgs { private int _rowIndex; private OrderedDictionary _keys; private OrderedDictionary _values; ///Provides data for some ///events. /// public DetailsViewDeleteEventArgs(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 DetailsViewDeleteEventArgs : CancelEventArgs { private int _rowIndex; private OrderedDictionary _keys; private OrderedDictionary _values; ///Provides data for some ///events. /// public DetailsViewDeleteEventArgs(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
- HtmlElementCollection.cs
- sqlcontext.cs
- XmlSchemaSimpleTypeList.cs
- MenuCommand.cs
- __ComObject.cs
- CompilerGeneratedAttribute.cs
- BindToObject.cs
- EntityDataSourceUtil.cs
- BasicDesignerLoader.cs
- HttpCookie.cs
- ChangePassword.cs
- TextParagraph.cs
- OleDbCommandBuilder.cs
- UriScheme.cs
- WizardForm.cs
- GrammarBuilderDictation.cs
- CodeGeneratorAttribute.cs
- SamlAuthorizationDecisionStatement.cs
- Mapping.cs
- FlowNode.cs
- NameValuePair.cs
- DesignTimeDataBinding.cs
- Border.cs
- XmlTextReaderImpl.cs
- SqlInternalConnectionTds.cs
- ArrayWithOffset.cs
- TextViewBase.cs
- NotFiniteNumberException.cs
- MiniLockedBorderGlyph.cs
- _BufferOffsetSize.cs
- ValidationRuleCollection.cs
- ListViewUpdateEventArgs.cs
- XhtmlConformanceSection.cs
- CellTreeNodeVisitors.cs
- LoaderAllocator.cs
- StateDesigner.TransitionInfo.cs
- JpegBitmapDecoder.cs
- PlanCompiler.cs
- Int64Converter.cs
- TypeConverters.cs
- FileLoadException.cs
- pingexception.cs
- ClientSettings.cs
- MiniParameterInfo.cs
- ScriptReferenceEventArgs.cs
- OrthographicCamera.cs
- MultiSelectRootGridEntry.cs
- WebBrowserProgressChangedEventHandler.cs
- EntityModelBuildProvider.cs
- CheckBox.cs
- DeadCharTextComposition.cs
- StrokeSerializer.cs
- HtmlInputCheckBox.cs
- Rect.cs
- TextContainerChangeEventArgs.cs
- ProgressiveCrcCalculatingStream.cs
- ScrollBarAutomationPeer.cs
- ItemsPanelTemplate.cs
- DataSourceCacheDurationConverter.cs
- FormClosingEvent.cs
- ApplicationManager.cs
- WindowsListViewSubItem.cs
- ReflectionUtil.cs
- ProfilePropertySettings.cs
- HtmlElementCollection.cs
- GroupJoinQueryOperator.cs
- TypeElement.cs
- UserControlParser.cs
- ClockController.cs
- EventHandlersStore.cs
- _SafeNetHandles.cs
- Parser.cs
- ClientSettingsSection.cs
- UrlMapping.cs
- QilCloneVisitor.cs
- UnicastIPAddressInformationCollection.cs
- CompressedStack.cs
- SubpageParaClient.cs
- DbResourceAllocator.cs
- Int16Storage.cs
- NameService.cs
- DataSourceComponent.cs
- MultiTrigger.cs
- ObjectTypeMapping.cs
- TraceInternal.cs
- BaseDataList.cs
- UrlMappingCollection.cs
- TextEditorTables.cs
- PreProcessInputEventArgs.cs
- DockProviderWrapper.cs
- CaseInsensitiveHashCodeProvider.cs
- GeneralTransform3DCollection.cs
- SortExpressionBuilder.cs
- XmlAnyAttributeAttribute.cs
- DBConnectionString.cs
- TreeBuilder.cs
- TextElementCollection.cs
- UTF7Encoding.cs
- CollectionBuilder.cs
- DataGridViewColumnDividerDoubleClickEventArgs.cs