Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / xsp / System / Web / UI / WebControls / FormViewUpdateEventArgs.cs / 1305376 / 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; ////// 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.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
- ProfilePropertyNameValidator.cs
- CustomErrorsSection.cs
- AssemblyBuilderData.cs
- FillRuleValidation.cs
- StopStoryboard.cs
- SiteMapNode.cs
- SevenBitStream.cs
- XamlTemplateSerializer.cs
- _NTAuthentication.cs
- SrgsNameValueTag.cs
- ZipIOCentralDirectoryDigitalSignature.cs
- ComPersistableTypeElement.cs
- PenThread.cs
- OptimizerPatterns.cs
- FamilyMapCollection.cs
- UnsafeNativeMethods.cs
- BrowserTree.cs
- RefreshEventArgs.cs
- DataSysAttribute.cs
- LineBreakRecord.cs
- KnownTypesProvider.cs
- BitmapData.cs
- LinkLabelLinkClickedEvent.cs
- DrawToolTipEventArgs.cs
- Span.cs
- GraphicsContext.cs
- ComponentResourceKeyConverter.cs
- ListViewItem.cs
- TransactionFlowBindingElement.cs
- CacheForPrimitiveTypes.cs
- DocumentSchemaValidator.cs
- MostlySingletonList.cs
- EventHandlersStore.cs
- InputScopeNameConverter.cs
- GenericRootAutomationPeer.cs
- FieldToken.cs
- DataGridViewCheckBoxCell.cs
- MethodToken.cs
- DebugHandleTracker.cs
- ModuleElement.cs
- ImpersonationContext.cs
- Icon.cs
- EmptyQuery.cs
- TrustSection.cs
- nulltextcontainer.cs
- ManagedIStream.cs
- ScrollBar.cs
- ToolStripSeparatorRenderEventArgs.cs
- CustomAssemblyResolver.cs
- SystemUnicastIPAddressInformation.cs
- TypeUtils.cs
- TextBox.cs
- RecordsAffectedEventArgs.cs
- VScrollBar.cs
- ChangeDirector.cs
- ChangePasswordAutoFormat.cs
- TriggerActionCollection.cs
- SimpleExpression.cs
- ApplicationInfo.cs
- WebResourceAttribute.cs
- PersonalizationEntry.cs
- UserControlBuildProvider.cs
- UniqueEventHelper.cs
- PrtCap_Reader.cs
- MessageSecurityOverMsmq.cs
- WebServiceHandlerFactory.cs
- ScrollData.cs
- ObjectConverter.cs
- WebConfigurationManager.cs
- WebBrowserNavigatedEventHandler.cs
- RetriableClipboard.cs
- ActivityValidator.cs
- SoapHttpTransportImporter.cs
- DataGridItem.cs
- TextEditorContextMenu.cs
- ProxyGenerationError.cs
- PerformanceCountersElement.cs
- RoleManagerSection.cs
- ExtendedPropertyInfo.cs
- SafeBitVector32.cs
- AutoResizedEvent.cs
- DataTransferEventArgs.cs
- BufferedConnection.cs
- DataGridViewBindingCompleteEventArgs.cs
- RepeaterItemEventArgs.cs
- hwndwrapper.cs
- BuildProvider.cs
- XamlToRtfParser.cs
- EventKeyword.cs
- SafeBitVector32.cs
- BamlRecordHelper.cs
- QueryReaderSettings.cs
- HybridDictionary.cs
- HotCommands.cs
- AuthenticationService.cs
- ValidationRule.cs
- OracleColumn.cs
- XsdCachingReader.cs
- SmtpException.cs
- CornerRadius.cs