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
- Rijndael.cs
- LinkLabel.cs
- MultipleViewProviderWrapper.cs
- ProtocolsConfiguration.cs
- MetadataUtil.cs
- SqlTypeConverter.cs
- ValidationHelper.cs
- DataSourceHelper.cs
- SystemInfo.cs
- AuthStoreRoleProvider.cs
- WorkflowMarkupSerializationException.cs
- _DomainName.cs
- ButtonChrome.cs
- OutputCacheSettings.cs
- SpeechRecognitionEngine.cs
- XmlChildNodes.cs
- ECDiffieHellmanCng.cs
- SimpleTableProvider.cs
- LockedBorderGlyph.cs
- EllipseGeometry.cs
- ProcessModelSection.cs
- TransformedBitmap.cs
- HttpValueCollection.cs
- ACE.cs
- SqlCacheDependencySection.cs
- HttpStreams.cs
- SchemaEntity.cs
- ParentControlDesigner.cs
- DbModificationClause.cs
- _SslSessionsCache.cs
- CheckBox.cs
- RoleServiceManager.cs
- GACIdentityPermission.cs
- DependencyPropertyKind.cs
- HashHelper.cs
- TextBox.cs
- OdbcConnection.cs
- StringSorter.cs
- Geometry3D.cs
- _AutoWebProxyScriptEngine.cs
- ButtonBase.cs
- ListItemConverter.cs
- Expander.cs
- DataRecordObjectView.cs
- Point4DConverter.cs
- MappingException.cs
- TreeNodeBindingCollection.cs
- MemoryMappedFile.cs
- ButtonBaseAdapter.cs
- PageContentAsyncResult.cs
- InvalidCommandTreeException.cs
- XpsStructure.cs
- BitArray.cs
- SplashScreen.cs
- AnnotationHelper.cs
- SqlDeflator.cs
- SafeRightsManagementPubHandle.cs
- DataBindingList.cs
- SimpleRecyclingCache.cs
- SiteMembershipCondition.cs
- PropertyGridView.cs
- DbProviderConfigurationHandler.cs
- ResourceProperty.cs
- OrderedParallelQuery.cs
- Synchronization.cs
- WebBrowserNavigatedEventHandler.cs
- CompositeScriptReference.cs
- GroupDescription.cs
- DocumentsTrace.cs
- ReflectTypeDescriptionProvider.cs
- LinqDataSourceInsertEventArgs.cs
- PackageRelationshipSelector.cs
- UniqueConstraint.cs
- basenumberconverter.cs
- MachineKeySection.cs
- DispatcherSynchronizationContext.cs
- XhtmlBasicPhoneCallAdapter.cs
- SettingsSavedEventArgs.cs
- InitializerFacet.cs
- SafePEFileHandle.cs
- _SslStream.cs
- StrokeIntersection.cs
- SimpleRecyclingCache.cs
- ToolStripPanel.cs
- TrackingMemoryStream.cs
- SettingsPropertyWrongTypeException.cs
- Number.cs
- ThemeConfigurationDialog.cs
- FixedSchema.cs
- TreeNodeSelectionProcessor.cs
- CharacterBufferReference.cs
- XmlILOptimizerVisitor.cs
- ToolBar.cs
- ColumnMapVisitor.cs
- SmtpTransport.cs
- RequestCachePolicy.cs
- KnownBoxes.cs
- HeaderLabel.cs
- Pen.cs
- basemetadatamappingvisitor.cs