Code:
/ FXUpdate3074 / FXUpdate3074 / 1.1 / untmp / whidbey / QFE / ndp / fx / src / xsp / System / Web / UI / WebControls / FormViewUpdateEventArgs.cs / 1 / FormViewUpdateEventArgs.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 FormViewUpdateEventArgs : CancelEventArgs { private object _commandArgument; private OrderedDictionary _values; private OrderedDictionary _keys; private OrderedDictionary _oldValues; ///Provides data for some ///events. /// public FormViewUpdateEventArgs(object commandArgument) : base(false) { this._commandArgument = commandArgument; } ///Initializes a new instance of the ////// class. /// public object CommandArgument { get { return _commandArgument; } } ///Gets the 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 NewValues { get { if (_values == null) { _values = new OrderedDictionary(); } return _values; } } ///Gets a OrderedDictionary to populate with updated row values. This property is read-only. ////// public IOrderedDictionary OldValues { get { if (_oldValues == null) { _oldValues = new OrderedDictionary(); } return _oldValues; } } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. // Copyright (c) Microsoft Corporation. All rights reserved.Gets a OrderedDictionary to populate with pre-edit row values. This property is read-only. ///
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- FilterElement.cs
- CompilerResults.cs
- ContractTypeNameCollection.cs
- SchemaImporterExtensionElement.cs
- Renderer.cs
- ThaiBuddhistCalendar.cs
- Select.cs
- SQLByte.cs
- Perspective.cs
- SHA512.cs
- ConfigXmlComment.cs
- Stacktrace.cs
- brushes.cs
- ProcessModelInfo.cs
- RequestCacheEntry.cs
- TextRenderer.cs
- ChtmlTextWriter.cs
- EventRoute.cs
- XmlObjectSerializerWriteContext.cs
- SafeThemeHandle.cs
- WorkflowStateRollbackService.cs
- DataFormats.cs
- XmlDataDocument.cs
- KnownBoxes.cs
- Classification.cs
- DataGridColumnHeadersPresenterAutomationPeer.cs
- IconBitmapDecoder.cs
- COAUTHINFO.cs
- SetIterators.cs
- ZeroOpNode.cs
- ExpressionPrinter.cs
- DataGridViewCellEventArgs.cs
- SelectiveScrollingGrid.cs
- TextTreeRootNode.cs
- ExtenderControl.cs
- TileBrush.cs
- AppSettingsReader.cs
- OleDbDataAdapter.cs
- EnglishPluralizationService.cs
- CssTextWriter.cs
- MemoryStream.cs
- XmlSchemas.cs
- CodeTypeDeclaration.cs
- ScriptManager.cs
- ToolStripMenuItem.cs
- Comparer.cs
- ImageFormat.cs
- MetadataHelper.cs
- BlockCollection.cs
- DataGridViewComboBoxColumnDesigner.cs
- DataGridColumnCollection.cs
- HtmlMeta.cs
- XPathNodeIterator.cs
- MappingSource.cs
- ExpressionNode.cs
- ToolStripGripRenderEventArgs.cs
- GuidelineCollection.cs
- NameSpaceEvent.cs
- CatalogPartCollection.cs
- PointAnimationUsingPath.cs
- PresentationSource.cs
- ComplexTypeEmitter.cs
- VideoDrawing.cs
- HostedHttpTransportManager.cs
- WpfPayload.cs
- DPAPIProtectedConfigurationProvider.cs
- GiveFeedbackEventArgs.cs
- querybuilder.cs
- EventData.cs
- CompositeActivityTypeDescriptorProvider.cs
- EntityFunctions.cs
- FixedPosition.cs
- DataGridColumnDropSeparator.cs
- FrameworkTextComposition.cs
- MultiView.cs
- SerializationStore.cs
- MultiByteCodec.cs
- MsmqIntegrationValidationBehavior.cs
- ToolTipAutomationPeer.cs
- XmlSchemaSet.cs
- EditorServiceContext.cs
- ObjectStateEntryOriginalDbUpdatableDataRecord.cs
- PropertyMappingExceptionEventArgs.cs
- CodeEventReferenceExpression.cs
- LinkedResourceCollection.cs
- RelOps.cs
- ObjectReaderCompiler.cs
- BlockCollection.cs
- LineGeometry.cs
- SmiContext.cs
- ColorMap.cs
- ScriptModule.cs
- TextView.cs
- ControlsConfig.cs
- GridViewSelectEventArgs.cs
- UnsafeNativeMethods.cs
- ProfileGroupSettingsCollection.cs
- ObjectManager.cs
- SparseMemoryStream.cs
- WmiPutTraceRecord.cs