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
- TemplateAction.cs
- XmlNodeComparer.cs
- RowSpanVector.cs
- ProfileService.cs
- CapabilitiesAssignment.cs
- TcpChannelListener.cs
- XmlSchemaRedefine.cs
- TokenBasedSetEnumerator.cs
- VariableQuery.cs
- DesignUtil.cs
- NamespaceCollection.cs
- XmlBaseReader.cs
- DateTimeFormat.cs
- SimpleTypeResolver.cs
- ShapingEngine.cs
- ManagementNamedValueCollection.cs
- CollectionViewProxy.cs
- ProfileParameter.cs
- DodSequenceMerge.cs
- AnimationTimeline.cs
- ServicePointManagerElement.cs
- StrokeIntersection.cs
- StrongTypingException.cs
- Sequence.cs
- ExpressionNormalizer.cs
- TextParagraphView.cs
- WSHttpSecurityElement.cs
- NavigationProperty.cs
- Localizer.cs
- SecUtil.cs
- DATA_BLOB.cs
- UpdatePanelTrigger.cs
- AssertUtility.cs
- DictionarySurrogate.cs
- LineProperties.cs
- BulletedList.cs
- SemanticResultKey.cs
- EventBookmark.cs
- DbDataAdapter.cs
- UriExt.cs
- BroadcastEventHelper.cs
- CornerRadius.cs
- TabletDeviceInfo.cs
- assemblycache.cs
- MsmqIntegrationSecurity.cs
- LinkArea.cs
- ChannelAcceptor.cs
- PriorityBinding.cs
- FastEncoder.cs
- DispatcherEventArgs.cs
- ControlBuilderAttribute.cs
- StreamWriter.cs
- ProviderUtil.cs
- SpeechRecognitionEngine.cs
- QueryConverter.cs
- COSERVERINFO.cs
- WinFormsUtils.cs
- DataViewManager.cs
- InfoCardTraceRecord.cs
- SignatureSummaryDialog.cs
- ImageField.cs
- DataExpression.cs
- AsyncOperation.cs
- ServerValidateEventArgs.cs
- elementinformation.cs
- UniqueEventHelper.cs
- FontSizeConverter.cs
- PolicyValidationException.cs
- AutomationProperties.cs
- BordersPage.cs
- GridLength.cs
- EntityDataSourceReferenceGroup.cs
- HScrollBar.cs
- ComPlusInstanceProvider.cs
- GridViewActionList.cs
- LinkButton.cs
- SHA384Cng.cs
- DocumentSchemaValidator.cs
- WorkflowOperationAsyncResult.cs
- MultipartContentParser.cs
- CharAnimationUsingKeyFrames.cs
- AssociationTypeEmitter.cs
- CachedBitmap.cs
- HttpProfileGroupBase.cs
- FloaterBaseParagraph.cs
- XmlTextAttribute.cs
- HtmlMeta.cs
- MetadataArtifactLoader.cs
- DependencyPropertyChangedEventArgs.cs
- InfoCardRSAOAEPKeyExchangeDeformatter.cs
- UInt64Storage.cs
- Control.cs
- DelimitedListTraceListener.cs
- ColorAnimationBase.cs
- DataGridViewRowHeaderCell.cs
- RectAnimationBase.cs
- SqlDataSourceTableQuery.cs
- AssociatedControlConverter.cs
- FlowDocument.cs
- Vector3D.cs