Code:
/ FXUpdate3074 / FXUpdate3074 / 1.1 / DEVDIV / depot / DevDiv / releases / 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. ///// 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
- RuntimeConfigurationRecord.cs
- ListViewSortEventArgs.cs
- listviewsubitemcollectioneditor.cs
- BitmapFrameEncode.cs
- DbgUtil.cs
- MSG.cs
- StringUtil.cs
- TransportManager.cs
- DbResourceAllocator.cs
- XmlAnyElementAttributes.cs
- XPathPatternParser.cs
- ColorConverter.cs
- DropShadowEffect.cs
- GACMembershipCondition.cs
- OletxTransactionManager.cs
- EmptyEnumerator.cs
- StylusPlugInCollection.cs
- PropertyRecord.cs
- WindowsRebar.cs
- SystemTcpStatistics.cs
- NullReferenceException.cs
- AbstractDataSvcMapFileLoader.cs
- CodeSnippetCompileUnit.cs
- Comparer.cs
- LostFocusEventManager.cs
- GridViewRowPresenterBase.cs
- SynchronizedInputProviderWrapper.cs
- FontClient.cs
- UnsignedPublishLicense.cs
- serverconfig.cs
- BmpBitmapDecoder.cs
- EntityViewContainer.cs
- HashCodeCombiner.cs
- TypeElement.cs
- HttpException.cs
- ResourceManagerWrapper.cs
- Dynamic.cs
- EdmItemError.cs
- DictionaryManager.cs
- IxmlLineInfo.cs
- DbMetaDataColumnNames.cs
- WinEventQueueItem.cs
- WpfSharedXamlSchemaContext.cs
- TokenBasedSet.cs
- sqlcontext.cs
- SettingsContext.cs
- Matrix3DStack.cs
- PartManifestEntry.cs
- XmlEnumAttribute.cs
- URIFormatException.cs
- ResourceAssociationType.cs
- ApplicationServiceHelper.cs
- BinHexDecoder.cs
- EventManager.cs
- Encoding.cs
- HttpInputStream.cs
- ApplicationTrust.cs
- TreeBuilder.cs
- WebPartEventArgs.cs
- PromptStyle.cs
- FilterableAttribute.cs
- EntityContainerAssociationSet.cs
- BaseCollection.cs
- ErrorProvider.cs
- TypeHelper.cs
- SurrogateChar.cs
- PrintEvent.cs
- ExceptionHelpers.cs
- IteratorDescriptor.cs
- TypefaceMetricsCache.cs
- _ConnectStream.cs
- OleDbSchemaGuid.cs
- DataGridItemCollection.cs
- HtmlShimManager.cs
- OneOfConst.cs
- ClientConfigurationHost.cs
- ExtensionFile.cs
- PreProcessor.cs
- FeatureSupport.cs
- ConfigurationValidatorBase.cs
- ListBindableAttribute.cs
- SmtpMail.cs
- CustomPopupPlacement.cs
- DataServiceRequestOfT.cs
- HttpRequestTraceRecord.cs
- XmlSchemaException.cs
- SiteMapPath.cs
- DescendantQuery.cs
- CryptoKeySecurity.cs
- IgnoreSection.cs
- UnaryNode.cs
- ReferentialConstraint.cs
- _NegoStream.cs
- VisualBrush.cs
- IisTraceListener.cs
- FullTrustAssembliesSection.cs
- CultureTableRecord.cs
- FontStyle.cs
- SpeechUI.cs
- CryptoApi.cs