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 / 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
- PropertyGridCommands.cs
- FixedSOMElement.cs
- OleDbConnectionInternal.cs
- ColorConvertedBitmap.cs
- SchemaCollectionPreprocessor.cs
- BindMarkupExtensionSerializer.cs
- DataPager.cs
- ExtenderProviderService.cs
- WindowsFormsHostAutomationPeer.cs
- XmlUtf8RawTextWriter.cs
- ControlIdConverter.cs
- CompiledRegexRunnerFactory.cs
- DBSqlParserTable.cs
- Buffer.cs
- JsonGlobals.cs
- EventHandlersStore.cs
- TreeView.cs
- MethodAccessException.cs
- XmlCDATASection.cs
- ProvidersHelper.cs
- ControlBuilderAttribute.cs
- Rotation3D.cs
- TimerEventSubscription.cs
- SQLByteStorage.cs
- Symbol.cs
- NamedPipeAppDomainProtocolHandler.cs
- DataGridHeaderBorder.cs
- DataGridViewDataErrorEventArgs.cs
- BindingGroup.cs
- DesignerWithHeader.cs
- CustomPopupPlacement.cs
- ContextBase.cs
- GuidConverter.cs
- MarkupExtensionParser.cs
- TypeRefElement.cs
- VectorCollectionConverter.cs
- DbMetaDataFactory.cs
- CodeSnippetTypeMember.cs
- COSERVERINFO.cs
- JpegBitmapEncoder.cs
- ManagedCodeMarkers.cs
- System.Data.OracleClient_BID.cs
- VariantWrapper.cs
- EntityEntry.cs
- WebPartZoneAutoFormat.cs
- XPathParser.cs
- AlphabeticalEnumConverter.cs
- DrawingBrush.cs
- VisualCollection.cs
- LayoutInformation.cs
- TraceContextEventArgs.cs
- TemplateComponentConnector.cs
- BaseResourcesBuildProvider.cs
- ChannelManager.cs
- WS2007HttpBindingElement.cs
- SmiEventSink_Default.cs
- MenuEventArgs.cs
- DocumentViewerConstants.cs
- ExpressionReplacer.cs
- WaitHandleCannotBeOpenedException.cs
- SiteMembershipCondition.cs
- ZipIOEndOfCentralDirectoryBlock.cs
- OledbConnectionStringbuilder.cs
- CultureMapper.cs
- XmlTypeAttribute.cs
- HtmlCommandAdapter.cs
- ButtonBaseAdapter.cs
- ProviderUtil.cs
- TimeoutValidationAttribute.cs
- TypeToken.cs
- FragmentQueryKB.cs
- MetadataPropertyvalue.cs
- ViewLoader.cs
- DataColumnMappingCollection.cs
- BorderSidesEditor.cs
- Event.cs
- TableLayoutPanelCodeDomSerializer.cs
- SQLByteStorage.cs
- JournalNavigationScope.cs
- BaseCodeDomTreeGenerator.cs
- QilFunction.cs
- Int32CAMarshaler.cs
- SQLGuid.cs
- WebPartVerbCollection.cs
- Icon.cs
- HtmlInputReset.cs
- ModifierKeysConverter.cs
- FontWeights.cs
- ContainerVisual.cs
- DbgCompiler.cs
- MailSettingsSection.cs
- DataViewListener.cs
- PrintDocument.cs
- JavascriptCallbackResponseProperty.cs
- MasterPageCodeDomTreeGenerator.cs
- DataGridViewRowDividerDoubleClickEventArgs.cs
- DataGridViewCellFormattingEventArgs.cs
- ContractCodeDomInfo.cs
- ContentPresenter.cs
- XPathDocumentBuilder.cs