Code:
/ DotNET / DotNET / 8.0 / untmp / whidbey / REDBITS / ndp / fx / src / xsp / System / Web / UI / WebControls / DetailsViewUpdateEventArgs.cs / 1 / DetailsViewUpdateEventArgs.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 DetailsViewUpdateEventArgs : CancelEventArgs { private object _commandArgument; private OrderedDictionary _values; private OrderedDictionary _keys; private OrderedDictionary _oldValues; ///Provides data for some ///events. /// public DetailsViewUpdateEventArgs(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
- QueryCorrelationInitializer.cs
- ParameterBuilder.cs
- QueryOptionExpression.cs
- ClientRolePrincipal.cs
- ToolStripItemImageRenderEventArgs.cs
- Stackframe.cs
- Attachment.cs
- TextParaLineResult.cs
- RelationshipNavigation.cs
- TableLayoutColumnStyleCollection.cs
- OracleCommandBuilder.cs
- Bezier.cs
- XPathNode.cs
- DataGridViewButtonCell.cs
- DesignUtil.cs
- CreateRefExpr.cs
- ChangeTracker.cs
- RoleServiceManager.cs
- SimpleWorkerRequest.cs
- Matrix3D.cs
- formatstringdialog.cs
- RangeBaseAutomationPeer.cs
- TextEmbeddedObject.cs
- ScrollItemPattern.cs
- Permission.cs
- Attachment.cs
- SqlNotificationEventArgs.cs
- LogReservationCollection.cs
- CharacterMetrics.cs
- WindowsListView.cs
- TextDecorationUnitValidation.cs
- WebControl.cs
- PbrsForward.cs
- DesignerSerializationOptionsAttribute.cs
- SmtpAuthenticationManager.cs
- SourceSwitch.cs
- ExeConfigurationFileMap.cs
- ImageAutomationPeer.cs
- XPathQilFactory.cs
- StrokeCollection2.cs
- XmlIlTypeHelper.cs
- NativeMethodsOther.cs
- _BasicClient.cs
- PathGeometry.cs
- BufferedGraphicsContext.cs
- Regex.cs
- OdbcParameter.cs
- Opcode.cs
- EventLogEntry.cs
- PageOrientation.cs
- PositiveTimeSpanValidatorAttribute.cs
- DataGridHelper.cs
- X509ChainElement.cs
- ServicePointManager.cs
- webclient.cs
- FaultCode.cs
- SqlConnectionHelper.cs
- ImageListStreamer.cs
- SvcMapFileLoader.cs
- Event.cs
- Color.cs
- JsonSerializer.cs
- BodyWriter.cs
- CompilerState.cs
- XmlSchemaSequence.cs
- MenuItem.cs
- MSAAEventDispatcher.cs
- Propagator.ExtentPlaceholderCreator.cs
- CellParaClient.cs
- TimeSpanSecondsConverter.cs
- TextEditorSelection.cs
- DataGridViewRowCancelEventArgs.cs
- ServiceBusyException.cs
- MediaSystem.cs
- CacheHelper.cs
- CalendarDataBindingHandler.cs
- RuntimeHandles.cs
- WebHttpSecurityElement.cs
- VirtualPathProvider.cs
- AssertSection.cs
- MemberDomainMap.cs
- UrlMapping.cs
- ContentType.cs
- XmlCharCheckingWriter.cs
- StyleSelector.cs
- Variable.cs
- XmlMtomWriter.cs
- ThicknessAnimationUsingKeyFrames.cs
- ErrorRuntimeConfig.cs
- sqlser.cs
- PerfService.cs
- FontNameConverter.cs
- SqlDataSourceEnumerator.cs
- CodePageUtils.cs
- SecurityElement.cs
- ExceptionHelpers.cs
- InkPresenter.cs
- RelationalExpressions.cs
- DataGridViewCellMouseEventArgs.cs
- AttributeExtensions.cs