Code:
/ Dotnetfx_Win7_3.5.1 / Dotnetfx_Win7_3.5.1 / 3.5.1 / DEVDIV / depot / DevDiv / releases / whidbey / NetFXspW7 / 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; } } } } // 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 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; } } } } // 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
- RadioButtonBaseAdapter.cs
- MailAddressCollection.cs
- GenericsInstances.cs
- FixedSOMElement.cs
- MouseButton.cs
- Interlocked.cs
- ListViewInsertionMark.cs
- DateTimeUtil.cs
- ClientType.cs
- IOException.cs
- XmlDocumentFragment.cs
- sqlstateclientmanager.cs
- RegexBoyerMoore.cs
- SqlClientPermission.cs
- BooleanStorage.cs
- SemanticResolver.cs
- PhysicalOps.cs
- SqlCacheDependency.cs
- SystemInfo.cs
- CapabilitiesSection.cs
- CheckBoxAutomationPeer.cs
- FormViewPagerRow.cs
- SqlTypesSchemaImporter.cs
- CssClassPropertyAttribute.cs
- ProviderIncompatibleException.cs
- IdentityValidationException.cs
- Html32TextWriter.cs
- Evidence.cs
- SqlClientFactory.cs
- DependentList.cs
- bindurihelper.cs
- StatusBarPanelClickEvent.cs
- KeyedCollection.cs
- DesignTimeDataBinding.cs
- SystemIcmpV6Statistics.cs
- StyleSelector.cs
- RadioButtonBaseAdapter.cs
- DataGridViewCellStateChangedEventArgs.cs
- WindowsContainer.cs
- InstalledFontCollection.cs
- SafeLocalMemHandle.cs
- RelationshipManager.cs
- Int64KeyFrameCollection.cs
- DiagnosticsConfigurationHandler.cs
- FormViewModeEventArgs.cs
- XmlLangPropertyAttribute.cs
- ZipIOZip64EndOfCentralDirectoryBlock.cs
- _IPv4Address.cs
- EntityCommandDefinition.cs
- DetailsViewUpdatedEventArgs.cs
- OracleConnectionStringBuilder.cs
- LightweightCodeGenerator.cs
- SetStoryboardSpeedRatio.cs
- BindingValueChangedEventArgs.cs
- SafeEventHandle.cs
- NameValueFileSectionHandler.cs
- HierarchicalDataTemplate.cs
- PaintEvent.cs
- BasicDesignerLoader.cs
- SocketCache.cs
- SimpleWorkerRequest.cs
- ReadOnlyAttribute.cs
- CookieParameter.cs
- log.cs
- SrgsElementFactoryCompiler.cs
- ConstructorExpr.cs
- TextHidden.cs
- TextEditorSelection.cs
- Int32CollectionConverter.cs
- EncryptedPackage.cs
- WmfPlaceableFileHeader.cs
- JournalNavigationScope.cs
- StringFreezingAttribute.cs
- CompilerGeneratedAttribute.cs
- TreeBuilder.cs
- TextBounds.cs
- ListBindingConverter.cs
- CopyAttributesAction.cs
- LayoutTable.cs
- HttpApplicationFactory.cs
- VariantWrapper.cs
- DataBoundControlHelper.cs
- RuntimeCompatibilityAttribute.cs
- ThreadSafeList.cs
- DirectoryNotFoundException.cs
- FixedNode.cs
- MaskedTextBoxTextEditor.cs
- ApplicationServiceManager.cs
- UIElement3DAutomationPeer.cs
- Msec.cs
- ToolTipAutomationPeer.cs
- TypeListConverter.cs
- ScrollItemPattern.cs
- ValueUtilsSmi.cs
- AuthenticateEventArgs.cs
- HtmlContainerControl.cs
- XNodeValidator.cs
- CollectionViewGroupRoot.cs
- ResumeStoryboard.cs
- RuntimeCompatibilityAttribute.cs