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
- DatagridviewDisplayedBandsData.cs
- ImageCodecInfo.cs
- ManagementEventArgs.cs
- PageAsyncTask.cs
- CharacterHit.cs
- CharacterMetrics.cs
- input.cs
- SqlConnectionManager.cs
- MutableAssemblyCacheEntry.cs
- ButtonField.cs
- OdbcEnvironmentHandle.cs
- Profiler.cs
- RawStylusActions.cs
- ConfigurationCollectionAttribute.cs
- ApplicationServiceHelper.cs
- HttpResponseHeader.cs
- ValidatingPropertiesEventArgs.cs
- GridItemPattern.cs
- ReadOnlyTernaryTree.cs
- IIS7UserPrincipal.cs
- Monitor.cs
- _FtpDataStream.cs
- LinkUtilities.cs
- SqlClientPermission.cs
- MembershipUser.cs
- HtmlLink.cs
- ArcSegment.cs
- WebPartHelpVerb.cs
- UrlRoutingModule.cs
- Attributes.cs
- PathFigureCollectionConverter.cs
- NullableConverter.cs
- SqlFactory.cs
- TimeBoundedCache.cs
- ObjectItemAssemblyLoader.cs
- VariantWrapper.cs
- RoleService.cs
- ListSortDescriptionCollection.cs
- CodeThrowExceptionStatement.cs
- ListView.cs
- FaultPropagationQuery.cs
- DataGridViewColumnHeaderCell.cs
- FigureHelper.cs
- ConfigurationLocationCollection.cs
- ResolveCompletedEventArgs.cs
- WindowsIdentity.cs
- EventWaitHandleSecurity.cs
- NativeCompoundFileAPIs.cs
- StrongName.cs
- HtmlTableRow.cs
- SimpleFileLog.cs
- CharacterMetrics.cs
- ElementAction.cs
- EncryptedPackage.cs
- FilteredDataSetHelper.cs
- WinInetCache.cs
- TypedTableBase.cs
- BounceEase.cs
- StylusPointPropertyInfo.cs
- HttpListenerRequestUriBuilder.cs
- WebPartConnectionsConnectVerb.cs
- DiscoveryRequestHandler.cs
- TrustManagerMoreInformation.cs
- DataGridPagerStyle.cs
- PageRequestManager.cs
- OrderedDictionaryStateHelper.cs
- BaseTemplateBuildProvider.cs
- SpeechRecognizer.cs
- CompoundFileStreamReference.cs
- HttpListenerTimeoutManager.cs
- InvalidateEvent.cs
- LineInfo.cs
- FrameworkContentElement.cs
- HierarchicalDataSourceControl.cs
- ServerIdentity.cs
- ResourcePermissionBaseEntry.cs
- XhtmlBasicValidationSummaryAdapter.cs
- SelectionProcessor.cs
- TypeDelegator.cs
- IWorkflowDebuggerService.cs
- CodeChecksumPragma.cs
- FloatUtil.cs
- Perspective.cs
- ProxyWebPart.cs
- _UncName.cs
- DocumentEventArgs.cs
- CaseInsensitiveOrdinalStringComparer.cs
- Calendar.cs
- ComponentConverter.cs
- WindowShowOrOpenTracker.cs
- DataKeyArray.cs
- DesignBindingConverter.cs
- DataTablePropertyDescriptor.cs
- OracleNumber.cs
- DataTableExtensions.cs
- UnsafeNativeMethodsMilCoreApi.cs
- SqlServer2KCompatibilityAnnotation.cs
- HttpClientCertificate.cs
- NumericUpDownAcceleration.cs
- ObjectSecurityT.cs