Code:
/ 4.0 / 4.0 / 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. ///// 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
- TraceSection.cs
- XmlNamespaceMapping.cs
- BamlVersionHeader.cs
- BlockCollection.cs
- AssemblyCache.cs
- GeneratedCodeAttribute.cs
- OracleSqlParser.cs
- ToolStripControlHost.cs
- ControlTemplate.cs
- XamlStackWriter.cs
- DataSourceUtil.cs
- XmlArrayAttribute.cs
- OciLobLocator.cs
- HierarchicalDataBoundControlAdapter.cs
- CustomAttributeSerializer.cs
- EntityParameterCollection.cs
- DoubleLinkList.cs
- Queue.cs
- Logging.cs
- FixedDocumentSequencePaginator.cs
- MarkupExtensionParser.cs
- KeyFrames.cs
- OLEDB_Enum.cs
- manifestimages.cs
- RenderDataDrawingContext.cs
- ServicePoint.cs
- ApplicationDirectory.cs
- CodeArrayIndexerExpression.cs
- ObjectConverter.cs
- HandleCollector.cs
- ComponentConverter.cs
- CurrentTimeZone.cs
- XmlValidatingReaderImpl.cs
- ScopeElement.cs
- SplineKeyFrames.cs
- BezierSegment.cs
- SystemWebSectionGroup.cs
- UpDownEvent.cs
- Privilege.cs
- TransformProviderWrapper.cs
- CanExecuteRoutedEventArgs.cs
- precedingquery.cs
- EventWaitHandleSecurity.cs
- Message.cs
- DataGridViewCellStyleContentChangedEventArgs.cs
- ArgumentNullException.cs
- JournalEntryStack.cs
- TraceFilter.cs
- TripleDES.cs
- SR.Designer.cs
- QuestionEventArgs.cs
- WebBrowserDesigner.cs
- XamlVector3DCollectionSerializer.cs
- BitmapEffectInput.cs
- Dictionary.cs
- WindowShowOrOpenTracker.cs
- ClientOptions.cs
- Certificate.cs
- XmlDataImplementation.cs
- _AutoWebProxyScriptEngine.cs
- Qualifier.cs
- Mapping.cs
- Nullable.cs
- OdbcCommand.cs
- ZipIOZip64EndOfCentralDirectoryLocatorBlock.cs
- RegexFCD.cs
- SecurityUniqueId.cs
- Italic.cs
- CompositeFontInfo.cs
- ComplexType.cs
- IFlowDocumentViewer.cs
- FontSizeConverter.cs
- Hash.cs
- Soap12ProtocolImporter.cs
- Invariant.cs
- PreviewPageInfo.cs
- PseudoWebRequest.cs
- IgnoreFileBuildProvider.cs
- Quaternion.cs
- ToolStripSplitStackLayout.cs
- HtmlToClrEventProxy.cs
- RoleManagerEventArgs.cs
- DataServiceKeyAttribute.cs
- BindingExpression.cs
- LockCookie.cs
- XmlDocumentSchema.cs
- MSG.cs
- BlobPersonalizationState.cs
- EmptyCollection.cs
- MatrixAnimationUsingKeyFrames.cs
- IHttpResponseInternal.cs
- HttpCapabilitiesEvaluator.cs
- DynamicUpdateCommand.cs
- OleDbStruct.cs
- DiscoveryDefaults.cs
- HttpCapabilitiesEvaluator.cs
- TabItemWrapperAutomationPeer.cs
- AllMembershipCondition.cs
- SmtpSpecifiedPickupDirectoryElement.cs
- TypeElementCollection.cs