Code:
/ Net / Net / 3.5.50727.3053 / DEVDIV / depot / DevDiv / releases / whidbey / netfxsp / 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. //------------------------------------------------------------------------------ //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.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
- DbConnectionPoolOptions.cs
- InputMethodStateTypeInfo.cs
- DataStreamFromComStream.cs
- FilePrompt.cs
- TextElementEditingBehaviorAttribute.cs
- MouseCaptureWithinProperty.cs
- TransactedReceiveScope.cs
- PrivilegeNotHeldException.cs
- SvcMapFileSerializer.cs
- PrefixQName.cs
- ZipIOExtraFieldPaddingElement.cs
- MetadataCache.cs
- HitTestResult.cs
- Geometry3D.cs
- ListChangedEventArgs.cs
- Section.cs
- ApplicationSecurityManager.cs
- ConsumerConnectionPoint.cs
- ProfilePropertyNameValidator.cs
- ResourceReferenceExpressionConverter.cs
- OpCellTreeNode.cs
- VisualStates.cs
- SymbolEqualComparer.cs
- NamespaceMapping.cs
- ValidateNames.cs
- FileDialog_Vista_Interop.cs
- FontNamesConverter.cs
- Vector3DAnimation.cs
- ToolStripContentPanelDesigner.cs
- SamlAuthorizationDecisionStatement.cs
- ListBindableAttribute.cs
- CompletedAsyncResult.cs
- MenuItemStyle.cs
- WebPartHelpVerb.cs
- MessageQueueCriteria.cs
- SystemColorTracker.cs
- ZipIOZip64EndOfCentralDirectoryLocatorBlock.cs
- PeerInvitationResponse.cs
- InstanceStore.cs
- EUCJPEncoding.cs
- CompositionDesigner.cs
- QilInvokeLateBound.cs
- Section.cs
- StickyNoteAnnotations.cs
- TableLayoutCellPaintEventArgs.cs
- HtmlInputText.cs
- NumericExpr.cs
- Thumb.cs
- SqlUdtInfo.cs
- StringToken.cs
- XPathScanner.cs
- SignHashRequest.cs
- MimeMapping.cs
- MetadataArtifactLoaderFile.cs
- AuthenticationException.cs
- Matrix.cs
- PartBasedPackageProperties.cs
- TextCharacters.cs
- SQLBinaryStorage.cs
- ACL.cs
- ScaleTransform.cs
- Message.cs
- SiteMapNode.cs
- Regex.cs
- Context.cs
- SmtpReplyReader.cs
- Wizard.cs
- ObjectSpanRewriter.cs
- XmlDataCollection.cs
- PresentationTraceSources.cs
- NetPipeSectionData.cs
- IPEndPoint.cs
- ShapingEngine.cs
- KnownTypeAttribute.cs
- KnownTypesProvider.cs
- Optimizer.cs
- WebPartConnectionCollection.cs
- VScrollBar.cs
- ControlPaint.cs
- FileDetails.cs
- SignedInfo.cs
- brushes.cs
- XmlILCommand.cs
- ListItemCollection.cs
- CharacterMetrics.cs
- EncoderFallback.cs
- LambdaSerializationException.cs
- XmlProcessingInstruction.cs
- ToolboxItemCollection.cs
- InstanceStore.cs
- Geometry.cs
- StructureChangedEventArgs.cs
- _Win32.cs
- AspNetSynchronizationContext.cs
- DecoderBestFitFallback.cs
- QuaternionConverter.cs
- CapabilitiesSection.cs
- CodeGotoStatement.cs
- CssStyleCollection.cs
- BitmapCodecInfo.cs