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
- XmlBinaryReader.cs
- TimeSpanConverter.cs
- DbModificationCommandTree.cs
- SecurityTokenResolver.cs
- KeyValueConfigurationElement.cs
- IndexedSelectQueryOperator.cs
- Rectangle.cs
- CancellationScope.cs
- MLangCodePageEncoding.cs
- HashSet.cs
- ZoneIdentityPermission.cs
- TableColumnCollection.cs
- ProcessHostServerConfig.cs
- WebHttpSecurityModeHelper.cs
- RadioButtonRenderer.cs
- PersonalizationProviderCollection.cs
- UserPreferenceChangedEventArgs.cs
- HwndTarget.cs
- RadioButtonFlatAdapter.cs
- SecurityDescriptor.cs
- QueryExtender.cs
- Ray3DHitTestResult.cs
- DataServiceKeyAttribute.cs
- TextSelectionHighlightLayer.cs
- UpdatePanel.cs
- TypeContext.cs
- DataBindingCollection.cs
- SqlTypeSystemProvider.cs
- CmsUtils.cs
- CrossAppDomainChannel.cs
- SecurityUniqueId.cs
- DocumentViewerConstants.cs
- indexingfiltermarshaler.cs
- HTMLTagNameToTypeMapper.cs
- SchemaMapping.cs
- Conditional.cs
- MenuAutomationPeer.cs
- ThousandthOfEmRealPoints.cs
- SqlXml.cs
- DataKey.cs
- DragDropManager.cs
- WebPartChrome.cs
- CounterSet.cs
- Int64AnimationUsingKeyFrames.cs
- StoreAnnotationsMap.cs
- DataGridViewIntLinkedList.cs
- PartialCachingAttribute.cs
- PowerStatus.cs
- WebPermission.cs
- DeferredRunTextReference.cs
- CounterCreationDataCollection.cs
- NameSpaceExtractor.cs
- PathData.cs
- CodeMethodReturnStatement.cs
- Comparer.cs
- CompiledIdentityConstraint.cs
- LinqDataSourceView.cs
- SendKeys.cs
- SmtpDateTime.cs
- RemoteWebConfigurationHostServer.cs
- ExtentKey.cs
- DesignerActionMethodItem.cs
- Domain.cs
- MediaContextNotificationWindow.cs
- KerberosSecurityTokenProvider.cs
- ServiceOperationInvoker.cs
- FieldDescriptor.cs
- ConfigurationConverterBase.cs
- IOException.cs
- Empty.cs
- HScrollBar.cs
- RenameRuleObjectDialog.cs
- MD5CryptoServiceProvider.cs
- DescriptionAttribute.cs
- MasterPageParser.cs
- QilGeneratorEnv.cs
- CustomAttributeSerializer.cs
- XmlILOptimizerVisitor.cs
- DelegatingMessage.cs
- WindowsToolbarAsMenu.cs
- SerializationTrace.cs
- SystemWebExtensionsSectionGroup.cs
- ActiveXHost.cs
- ObfuscationAttribute.cs
- HelpProvider.cs
- XmlException.cs
- AssemblyFilter.cs
- ChangeDirector.cs
- HitTestParameters3D.cs
- QilCloneVisitor.cs
- DetailsViewPageEventArgs.cs
- BooleanProjectedSlot.cs
- DataGridViewComboBoxColumnDesigner.cs
- GcSettings.cs
- CacheForPrimitiveTypes.cs
- DataGridSortCommandEventArgs.cs
- Italic.cs
- DbProviderFactories.cs
- SerializerDescriptor.cs
- Parser.cs