Code:
/ Net / Net / 3.5.50727.3053 / DEVDIV / depot / DevDiv / releases / whidbey / netfxsp / 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; } } } } // 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 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; } } } } // 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
- TypeSystem.cs
- ConfigurationSectionGroup.cs
- LocalValueEnumerator.cs
- RepeaterItemCollection.cs
- TemplateBindingExtensionConverter.cs
- MarkupWriter.cs
- MonthChangedEventArgs.cs
- GetLedgerEntryForRecipientRequest.cs
- DataGridState.cs
- Util.cs
- EventLog.cs
- ConcurrentStack.cs
- AccessKeyManager.cs
- odbcmetadatafactory.cs
- DesigntimeLicenseContext.cs
- Rect.cs
- CallSiteBinder.cs
- BitVector32.cs
- SqlDataSourceCommandEventArgs.cs
- SourceLineInfo.cs
- CheckBoxBaseAdapter.cs
- TransformerTypeCollection.cs
- WinEventWrap.cs
- MessageQueueAccessControlEntry.cs
- CommandDesigner.cs
- ConfigurationManagerInternal.cs
- SerializationSectionGroup.cs
- InterleavedZipPartStream.cs
- ThreadStaticAttribute.cs
- WmlMobileTextWriter.cs
- Bits.cs
- InputDevice.cs
- _NegotiateClient.cs
- EventsTab.cs
- MailMessage.cs
- TransformValueSerializer.cs
- MessageQueueException.cs
- SqlDelegatedTransaction.cs
- Calendar.cs
- ImageDrawing.cs
- TableLayoutStyle.cs
- ZoomingMessageFilter.cs
- Matrix.cs
- DrawingGroup.cs
- LayeredChannelListener.cs
- BrowserCapabilitiesCodeGenerator.cs
- ArrayElementGridEntry.cs
- StartUpEventArgs.cs
- Vector3DAnimationBase.cs
- GetPolicyDetailsRequest.cs
- IDispatchConstantAttribute.cs
- CompareInfo.cs
- BitmapMetadataBlob.cs
- PropertyOverridesDialog.cs
- ResourceBinder.cs
- ZoneLinkButton.cs
- UniqueCodeIdentifierScope.cs
- SimplePropertyEntry.cs
- FieldInfo.cs
- BindingNavigator.cs
- EFDataModelProvider.cs
- VectorCollection.cs
- SHA384.cs
- MultiSelectRootGridEntry.cs
- CodeStatementCollection.cs
- WindowAutomationPeer.cs
- GridViewSortEventArgs.cs
- LineGeometry.cs
- RequiredFieldValidator.cs
- X509CertificateValidator.cs
- PageParser.cs
- WebServiceBindingAttribute.cs
- Int64Converter.cs
- StatusBar.cs
- EnterpriseServicesHelper.cs
- WebServiceClientProxyGenerator.cs
- PackagingUtilities.cs
- DateTimeOffsetStorage.cs
- RequestDescription.cs
- DbSourceParameterCollection.cs
- AuthenticationService.cs
- XpsS0ValidatingLoader.cs
- ConfigurationValue.cs
- SuppressMergeCheckAttribute.cs
- InputDevice.cs
- WindowsBrush.cs
- CompositionTarget.cs
- NameValueSectionHandler.cs
- XPathItem.cs
- DataGridItemCollection.cs
- HtmlTable.cs
- DataGridTablesFactory.cs
- Base64Encoder.cs
- SocketManager.cs
- ProbeRequestResponseAsyncResult.cs
- XdrBuilder.cs
- Keyboard.cs
- ZipIOExtraFieldPaddingElement.cs
- AppSettingsSection.cs
- ScriptRegistrationManager.cs