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
- BinaryWriter.cs
- AppPool.cs
- ImageSourceTypeConverter.cs
- DataGridViewRowsAddedEventArgs.cs
- WorkflowServiceNamespace.cs
- CounterSet.cs
- CharEntityEncoderFallback.cs
- IntSecurity.cs
- IIS7WorkerRequest.cs
- AllMembershipCondition.cs
- SizeConverter.cs
- WebPartEditorCancelVerb.cs
- MailDefinition.cs
- DuplicateWaitObjectException.cs
- SyntaxCheck.cs
- ToolStripDropDownMenu.cs
- SqlRewriteScalarSubqueries.cs
- SafeNativeMethods.cs
- TextEditorParagraphs.cs
- ConfigurationElement.cs
- ThemeDirectoryCompiler.cs
- ConfigurationElementProperty.cs
- VideoDrawing.cs
- OracleInfoMessageEventArgs.cs
- FormCollection.cs
- RegexParser.cs
- StringUtil.cs
- ObjectStateManager.cs
- NativeObjectSecurity.cs
- LineSegment.cs
- LinkedResource.cs
- Row.cs
- uribuilder.cs
- GridItemProviderWrapper.cs
- CellIdBoolean.cs
- LookupBindingPropertiesAttribute.cs
- GridItemProviderWrapper.cs
- XmlAnyAttributeAttribute.cs
- CssTextWriter.cs
- DropSource.cs
- ArraySortHelper.cs
- FileUpload.cs
- PropertyGridDesigner.cs
- CompilerError.cs
- NavigationProperty.cs
- IndexingContentUnit.cs
- ToolTipAutomationPeer.cs
- FixedDSBuilder.cs
- ToolStripDropDownItemDesigner.cs
- FacetChecker.cs
- LayoutSettings.cs
- DataServiceStreamProviderWrapper.cs
- XmlSchemaGroup.cs
- GraphicsContext.cs
- Axis.cs
- ObjectListSelectEventArgs.cs
- DataGridViewCellValueEventArgs.cs
- CharacterHit.cs
- altserialization.cs
- MobileDeviceCapabilitiesSectionHandler.cs
- ControlUtil.cs
- SerializerWriterEventHandlers.cs
- ExpressionBuilder.cs
- StrokeCollection.cs
- UrlMappingsModule.cs
- ChildChangedEventArgs.cs
- ClipboardProcessor.cs
- BooleanAnimationBase.cs
- SoundPlayer.cs
- MenuStrip.cs
- SmtpMail.cs
- Helpers.cs
- EntityClientCacheKey.cs
- ZipIOCentralDirectoryDigitalSignature.cs
- AttributedMetaModel.cs
- ColorAnimation.cs
- WindowsRegion.cs
- Divide.cs
- DetailsViewPageEventArgs.cs
- ResXResourceSet.cs
- ResXBuildProvider.cs
- Accessible.cs
- TypeBuilder.cs
- ToolStripProfessionalLowResolutionRenderer.cs
- RuleDefinitions.cs
- Compiler.cs
- MergeFailedEvent.cs
- MessageProtectionOrder.cs
- BaseCodeDomTreeGenerator.cs
- IfAction.cs
- PagedDataSource.cs
- XmlEncoding.cs
- AttributeQuery.cs
- DataSetUtil.cs
- SQLChars.cs
- TypedTableBaseExtensions.cs
- PassportAuthentication.cs
- FileUpload.cs
- IsolatedStorageFilePermission.cs
- brushes.cs