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
- ArcSegment.cs
- EventLogEntryCollection.cs
- ComboBoxAutomationPeer.cs
- ProfileGroupSettings.cs
- ConfigurationValidatorBase.cs
- BlobPersonalizationState.cs
- EncoderBestFitFallback.cs
- DataGridCell.cs
- SymbolEqualComparer.cs
- XmlSchemaComplexType.cs
- AliasGenerator.cs
- ObjectDisposedException.cs
- ContentTextAutomationPeer.cs
- NameValuePermission.cs
- TableHeaderCell.cs
- TextSchema.cs
- GACMembershipCondition.cs
- WindowsMenu.cs
- SessionConnectionReader.cs
- RuleSettingsCollection.cs
- ComponentChangingEvent.cs
- ReachIDocumentPaginatorSerializerAsync.cs
- RawStylusSystemGestureInputReport.cs
- TextOptions.cs
- TypedElement.cs
- ManagementBaseObject.cs
- WSFederationHttpBindingElement.cs
- WebPartCatalogAddVerb.cs
- LongValidator.cs
- ImageMapEventArgs.cs
- _TLSstream.cs
- UpdateManifestForBrowserApplication.cs
- CorrelationManager.cs
- webclient.cs
- Base64Encoder.cs
- IFormattable.cs
- DataBindingHandlerAttribute.cs
- ScrollChrome.cs
- BatchStream.cs
- WindowsGrip.cs
- EnterpriseServicesHelper.cs
- BlurEffect.cs
- WindowsTitleBar.cs
- AssertUtility.cs
- AutoCompleteStringCollection.cs
- ItemCollection.cs
- DataGridItemCollection.cs
- XPathChildIterator.cs
- ContextMenuService.cs
- OleDbConnectionInternal.cs
- PenLineJoinValidation.cs
- ServiceModelConfigurationSectionCollection.cs
- ByteBufferPool.cs
- Constraint.cs
- ParseElement.cs
- DataViewSettingCollection.cs
- DBPropSet.cs
- OpenTypeLayout.cs
- Decorator.cs
- CompilerParameters.cs
- XmlDomTextWriter.cs
- XmlSchemaComplexContentExtension.cs
- CaseInsensitiveComparer.cs
- TextModifier.cs
- SqlRecordBuffer.cs
- XmlResolver.cs
- XmlMemberMapping.cs
- RemotingSurrogateSelector.cs
- AsyncDataRequest.cs
- ACE.cs
- Vector3D.cs
- DependencyPropertyHelper.cs
- EpmSourceTree.cs
- WebPartEditVerb.cs
- TrackingRecord.cs
- AnnotationHelper.cs
- _UriTypeConverter.cs
- XmlSchemaValidationException.cs
- XmlDataLoader.cs
- CodeGotoStatement.cs
- RegexFCD.cs
- AspNetHostingPermission.cs
- BindingOperations.cs
- SupportsEventValidationAttribute.cs
- DataReaderContainer.cs
- PrincipalPermission.cs
- OdbcTransaction.cs
- TextTreeInsertUndoUnit.cs
- MultiAsyncResult.cs
- GridLengthConverter.cs
- EntityTypeEmitter.cs
- DoubleConverter.cs
- ProcessHostFactoryHelper.cs
- MatchingStyle.cs
- RuleSettingsCollection.cs
- DrawingGroup.cs
- GroupItemAutomationPeer.cs
- MethodRental.cs
- DataSourceExpression.cs
- SqlCacheDependencySection.cs