Code:
/ DotNET / DotNET / 8.0 / untmp / Orcas / RTM / ndp / fx / src / xsp / System / Web / Extensions / ui / webcontrols / ListViewDeleteEventArgs.cs / 1 / ListViewDeleteEventArgs.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- using System; using System.Collections.Specialized; using System.ComponentModel; namespace System.Web.UI.WebControls { [AspNetHostingPermission(System.Security.Permissions.SecurityAction.LinkDemand, Level=AspNetHostingPermissionLevel.Minimal)] [AspNetHostingPermission(System.Security.Permissions.SecurityAction.InheritanceDemand, Level=AspNetHostingPermissionLevel.Minimal)] public class ListViewDeleteEventArgs : CancelEventArgs { private int _itemIndex; private OrderedDictionary _values; private OrderedDictionary _keys; public ListViewDeleteEventArgs(int itemIndex) : base(false) { _itemIndex = itemIndex; } ////// public int ItemIndex { get { return _itemIndex; } } ///Gets the int argument to the command posted to the ///. This property is read-only. /// public IOrderedDictionary Keys { get { if (_keys == null) { _keys = new OrderedDictionary(); } return _keys; } } ///Gets a keyed list to populate with updated row values. 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. // Copyright (c) Microsoft Corporation. All rights reserved.Gets a OrderedDictionary to populate with updated row values. This property is read-only. ///
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- BrushConverter.cs
- XmlILTrace.cs
- AcceptorSessionSymmetricMessageSecurityProtocol.cs
- HtmlInputText.cs
- ControlIdConverter.cs
- StorageBasedPackageProperties.cs
- WebBrowser.cs
- SQLInt32Storage.cs
- AuthenticationService.cs
- DrawItemEvent.cs
- ThrowHelper.cs
- ACE.cs
- MeshGeometry3D.cs
- SafeNativeMethods.cs
- XomlCompilerResults.cs
- HttpListenerRequest.cs
- RecognizedWordUnit.cs
- DataGridViewColumnCollectionEditor.cs
- VarRefManager.cs
- Zone.cs
- BaseAutoFormat.cs
- SubMenuStyleCollectionEditor.cs
- FontInfo.cs
- DynamicValidatorEventArgs.cs
- DispatcherObject.cs
- ResolveNameEventArgs.cs
- StylusPointPropertyId.cs
- UpdatePanel.cs
- SettingsAttributeDictionary.cs
- ToolStripMenuItem.cs
- BitConverter.cs
- RoleManagerEventArgs.cs
- ExtendedProperty.cs
- dtdvalidator.cs
- webproxy.cs
- SchemaImporterExtensionElement.cs
- Types.cs
- AssemblyAttributesGoHere.cs
- FlowNode.cs
- CompressEmulationStream.cs
- Utilities.cs
- WebEventTraceProvider.cs
- GridToolTip.cs
- DataGridColumnCollection.cs
- RSAPKCS1KeyExchangeDeformatter.cs
- TcpConnectionPool.cs
- GridViewColumn.cs
- DataGridViewCellPaintingEventArgs.cs
- RepeaterCommandEventArgs.cs
- RequestQueue.cs
- RightNameExpirationInfoPair.cs
- DocumentSchemaValidator.cs
- ReverseComparer.cs
- EventQueueState.cs
- NamedPermissionSet.cs
- DirectoryObjectSecurity.cs
- ProcessModelSection.cs
- QilTernary.cs
- PreservationFileReader.cs
- SortedList.cs
- PersonalizationStateInfo.cs
- KeyTimeConverter.cs
- RegexMatchCollection.cs
- SelectionProviderWrapper.cs
- AnnotationResourceChangedEventArgs.cs
- IPipelineRuntime.cs
- OleDbInfoMessageEvent.cs
- ContainerVisual.cs
- ProtectedConfiguration.cs
- WhitespaceRuleReader.cs
- HttpInputStream.cs
- FieldAccessException.cs
- Restrictions.cs
- EventLogPermission.cs
- InheritedPropertyDescriptor.cs
- TextTreeTextElementNode.cs
- FontInfo.cs
- DateTimeUtil.cs
- XamlSerializer.cs
- DataBindingHandlerAttribute.cs
- DbExpressionRules.cs
- NativeRecognizer.cs
- FullTrustAssemblyCollection.cs
- xdrvalidator.cs
- UpdateCompiler.cs
- SQLMembershipProvider.cs
- ThreadExceptionDialog.cs
- Terminate.cs
- ReachDocumentPageSerializer.cs
- Fonts.cs
- HttpModuleActionCollection.cs
- COM2IManagedPerPropertyBrowsingHandler.cs
- SQLByteStorage.cs
- XmlQueryContext.cs
- DependentList.cs
- ByteFacetDescriptionElement.cs
- TableRowCollection.cs
- TemplatePagerField.cs
- DetailsViewPageEventArgs.cs
- HttpPostedFile.cs