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
- NullableLongMinMaxAggregationOperator.cs
- XamlFilter.cs
- TraceUtility.cs
- NotConverter.cs
- ExpressionBindingCollection.cs
- SubclassTypeValidatorAttribute.cs
- ArcSegment.cs
- basevalidator.cs
- Logging.cs
- XmlCharCheckingReader.cs
- CellIdBoolean.cs
- Pair.cs
- TcpTransportManager.cs
- GlyphingCache.cs
- SoapAttributeOverrides.cs
- AppDomain.cs
- ScopeCompiler.cs
- SqlCacheDependency.cs
- SqlAliaser.cs
- FileDialogPermission.cs
- EventBuilder.cs
- ControlIdConverter.cs
- SHA1Managed.cs
- ScriptManagerProxy.cs
- ResourceDisplayNameAttribute.cs
- ObjectItemNoOpAssemblyLoader.cs
- XamlToRtfParser.cs
- FirewallWrapper.cs
- JournalEntryListConverter.cs
- ChannelBinding.cs
- ToolZone.cs
- ScriptControlManager.cs
- SolidColorBrush.cs
- RouteParametersHelper.cs
- BindingSource.cs
- TextBoxAutoCompleteSourceConverter.cs
- EntityDataSourceValidationException.cs
- InheritablePropertyChangeInfo.cs
- WebBrowserDesigner.cs
- DataGridViewRowStateChangedEventArgs.cs
- WindowsClaimSet.cs
- SqlDataSourceCustomCommandPanel.cs
- BufferBuilder.cs
- PageAdapter.cs
- XPathCompileException.cs
- CommonGetThemePartSize.cs
- RelationshipDetailsRow.cs
- RootBuilder.cs
- RelatedImageListAttribute.cs
- FloaterBaseParaClient.cs
- CodeDomSerializerBase.cs
- DataPagerFieldCollection.cs
- FactoryGenerator.cs
- Command.cs
- SymbolMethod.cs
- ListView.cs
- NativeMethods.cs
- MailAddressCollection.cs
- PackageProperties.cs
- WebRequestModuleElementCollection.cs
- WarningException.cs
- DesignTimeResourceProviderFactoryAttribute.cs
- ChannelManager.cs
- smtpconnection.cs
- FontDialog.cs
- TextBoxView.cs
- EllipseGeometry.cs
- PermissionRequestEvidence.cs
- Matrix.cs
- SqlPersonalizationProvider.cs
- DrawingState.cs
- CroppedBitmap.cs
- HeaderedItemsControl.cs
- SQLInt32Storage.cs
- RemotingConfigParser.cs
- ListViewSelectEventArgs.cs
- Tile.cs
- QilStrConcat.cs
- EdmToObjectNamespaceMap.cs
- SHA256.cs
- TreeNodeBinding.cs
- FileLogRecordHeader.cs
- ProgressBarAutomationPeer.cs
- WindowsUpDown.cs
- PeerApplication.cs
- basenumberconverter.cs
- ItemCheckEvent.cs
- TemplateColumn.cs
- SystemWebExtensionsSectionGroup.cs
- XmlAutoDetectWriter.cs
- SqlBooleanMismatchVisitor.cs
- DataRowChangeEvent.cs
- CalendarDataBindingHandler.cs
- DataSourceControl.cs
- BitStack.cs
- ListViewTableRow.cs
- StateElement.cs
- ObjectStateFormatter.cs
- RuntimeConfigLKG.cs
- PermissionSet.cs