Code:
/ DotNET / DotNET / 8.0 / untmp / whidbey / REDBITS / 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; } } } }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
- SplayTreeNode.cs
- FontStretches.cs
- QilTargetType.cs
- OrthographicCamera.cs
- InputLangChangeEvent.cs
- Aes.cs
- HyperLinkColumn.cs
- TypedElement.cs
- XmlHierarchicalEnumerable.cs
- SspiSecurityTokenProvider.cs
- DataGridViewCellValueEventArgs.cs
- selecteditemcollection.cs
- AffineTransform3D.cs
- ParsedRoute.cs
- Soap12ProtocolImporter.cs
- DbConnectionPoolOptions.cs
- FusionWrap.cs
- PagedControl.cs
- XPathItem.cs
- SubstitutionDesigner.cs
- CatchBlock.cs
- BuildManager.cs
- DiscoveryReferences.cs
- EntityViewGenerationAttribute.cs
- WorkflowOperationAsyncResult.cs
- JsonClassDataContract.cs
- CacheEntry.cs
- DeflateStream.cs
- DesignerDataConnection.cs
- RadioButtonStandardAdapter.cs
- DiscoveryMessageSequence11.cs
- CodeGenerator.cs
- TextTreeNode.cs
- DatagridviewDisplayedBandsData.cs
- SnapLine.cs
- BitmapFrameEncode.cs
- ReadOnlyHierarchicalDataSource.cs
- SqlParameterCollection.cs
- SHA256Cng.cs
- WindowHideOrCloseTracker.cs
- DataGridViewRowEventArgs.cs
- StorageAssociationSetMapping.cs
- OracleLob.cs
- NetMsmqSecurity.cs
- InstanceDataCollection.cs
- AdvancedBindingPropertyDescriptor.cs
- XhtmlConformanceSection.cs
- WinInet.cs
- WebPartDisplayModeCollection.cs
- BigInt.cs
- TCEAdapterGenerator.cs
- HostedController.cs
- ContentControl.cs
- CertificateManager.cs
- SemanticTag.cs
- RSAPKCS1KeyExchangeDeformatter.cs
- DataSetSchema.cs
- BaseProcessProtocolHandler.cs
- WindowsSlider.cs
- HtmlToClrEventProxy.cs
- ContractMapping.cs
- ModelServiceImpl.cs
- DataGridViewLinkCell.cs
- SecurityTokenParameters.cs
- DefaultHttpHandler.cs
- CodeArrayIndexerExpression.cs
- RepeatInfo.cs
- SessionStateItemCollection.cs
- TextAnchor.cs
- SchemaTableOptionalColumn.cs
- ResourceDefaultValueAttribute.cs
- ScrollBarRenderer.cs
- InitiatorSessionSymmetricMessageSecurityProtocol.cs
- BitmapEffectDrawing.cs
- BitmapVisualManager.cs
- QueryContinueDragEvent.cs
- HTMLTextWriter.cs
- Propagator.JoinPropagator.cs
- ValidationErrorCollection.cs
- WebPartManagerDesigner.cs
- XsltQilFactory.cs
- CultureSpecificCharacterBufferRange.cs
- SessionEndingCancelEventArgs.cs
- TextParagraphView.cs
- OracleSqlParser.cs
- TdsParserStaticMethods.cs
- ApplicationGesture.cs
- CompoundFileStreamReference.cs
- BaseProcessProtocolHandler.cs
- InvalidFilterCriteriaException.cs
- grammarelement.cs
- RegistryConfigurationProvider.cs
- UnsafeNativeMethods.cs
- TextDecorations.cs
- sqlstateclientmanager.cs
- SQLInt64.cs
- ImageSourceConverter.cs
- WindowsListView.cs
- OptionalMessageQuery.cs
- BinaryNode.cs