Code:
/ DotNET / DotNET / 8.0 / untmp / whidbey / REDBITS / 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; } } } }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
- Context.cs
- oledbmetadatacolumnnames.cs
- TextFormatterImp.cs
- Signature.cs
- BaseValidatorDesigner.cs
- ACL.cs
- ToolStripTextBox.cs
- TraceSection.cs
- ReferencedAssembly.cs
- Predicate.cs
- MediaContext.cs
- NavigationPropertyAccessor.cs
- ToolStripHighContrastRenderer.cs
- ListBindableAttribute.cs
- ScriptServiceAttribute.cs
- Recipient.cs
- SimpleTypesSurrogate.cs
- SqlComparer.cs
- ObjectSecurity.cs
- FileSystemInfo.cs
- BoundField.cs
- ContentFilePart.cs
- HTTPNotFoundHandler.cs
- BatchServiceHost.cs
- FloatUtil.cs
- TypeNameParser.cs
- odbcmetadatafactory.cs
- NativeMethods.cs
- SafeEventLogWriteHandle.cs
- SqlConnectionHelper.cs
- TextParaClient.cs
- AttributeUsageAttribute.cs
- WSFederationHttpSecurity.cs
- Underline.cs
- ThrowOnMultipleAssignment.cs
- CaseInsensitiveHashCodeProvider.cs
- EntityDataSourceUtil.cs
- DbDataReader.cs
- SessionStateSection.cs
- HttpFileCollection.cs
- TagPrefixCollection.cs
- TemplateBindingExpressionConverter.cs
- HtmlWindowCollection.cs
- TextWriter.cs
- MessageEventSubscriptionService.cs
- CustomTypeDescriptor.cs
- PassportAuthenticationModule.cs
- TemplateBamlTreeBuilder.cs
- DataObjectEventArgs.cs
- TextEndOfParagraph.cs
- HeaderUtility.cs
- SqlFacetAttribute.cs
- PropertiesTab.cs
- HttpPostedFileBase.cs
- ButtonStandardAdapter.cs
- altserialization.cs
- ErrorReporting.cs
- TypeNameParser.cs
- Lookup.cs
- FileRecordSequenceHelper.cs
- RtfToXamlLexer.cs
- safesecurityhelperavalon.cs
- PathFigure.cs
- Marshal.cs
- OpenFileDialog.cs
- FileLogRecord.cs
- UTF32Encoding.cs
- MemberMaps.cs
- Viewport3DVisual.cs
- Selection.cs
- TextStore.cs
- MouseButton.cs
- OleDbRowUpdatingEvent.cs
- SrgsRulesCollection.cs
- basenumberconverter.cs
- GeometryHitTestResult.cs
- GeneralTransformGroup.cs
- Avt.cs
- KeyedCollection.cs
- QuaternionValueSerializer.cs
- Main.cs
- DataSysAttribute.cs
- DocumentEventArgs.cs
- HtmlTableCellCollection.cs
- NavigationEventArgs.cs
- ColumnBinding.cs
- XamlFigureLengthSerializer.cs
- ConfigurationManagerInternal.cs
- SecurityResources.cs
- TypeInitializationException.cs
- StrokeIntersection.cs
- OleDbPermission.cs
- XmlNavigatorStack.cs
- TextTreeInsertElementUndoUnit.cs
- DispatchChannelSink.cs
- MonthCalendar.cs
- XmlDictionaryReaderQuotasElement.cs
- ColorConvertedBitmapExtension.cs
- MissingMemberException.cs
- PropertyGridEditorPart.cs