Code:
/ FX-1434 / FX-1434 / 1.0 / untmp / whidbey / REDBITS / 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; } } } }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
- UnsafeNativeMethodsTablet.cs
- SBCSCodePageEncoding.cs
- DBSqlParserColumnCollection.cs
- DecimalStorage.cs
- UnsafeNativeMethods.cs
- MaskInputRejectedEventArgs.cs
- BindingExpressionUncommonField.cs
- GridPattern.cs
- XPathException.cs
- SequentialUshortCollection.cs
- SQLGuidStorage.cs
- XmlUnspecifiedAttribute.cs
- HttpResponseInternalWrapper.cs
- TextBoxAutoCompleteSourceConverter.cs
- ModelItem.cs
- BypassElement.cs
- DetailsViewModeEventArgs.cs
- _UriTypeConverter.cs
- RowUpdatedEventArgs.cs
- ToolStripControlHost.cs
- MarkupCompilePass2.cs
- Base64Encoding.cs
- DbConnectionPoolOptions.cs
- DetailsViewInsertedEventArgs.cs
- AnnotationAdorner.cs
- RadioButtonList.cs
- ImageSourceTypeConverter.cs
- BitmapPalette.cs
- StorageEntitySetMapping.cs
- Animatable.cs
- SqlBulkCopyColumnMappingCollection.cs
- ImageIndexConverter.cs
- arabicshape.cs
- SrgsGrammarCompiler.cs
- CallContext.cs
- ListViewContainer.cs
- DocumentGridPage.cs
- ValueProviderWrapper.cs
- FtpWebResponse.cs
- ServiceModelConfigurationSection.cs
- PerspectiveCamera.cs
- PolicyLevel.cs
- ConvertEvent.cs
- KerberosReceiverSecurityToken.cs
- FormsIdentity.cs
- CodeTypeDeclarationCollection.cs
- SiteMapDataSourceView.cs
- DataRecord.cs
- LinqDataSourceInsertEventArgs.cs
- SubpageParagraph.cs
- ChildDocumentBlock.cs
- SortDescriptionCollection.cs
- LoginView.cs
- HttpProfileGroupBase.cs
- DispatcherEventArgs.cs
- WizardStepBase.cs
- SourceFileBuildProvider.cs
- SafeLibraryHandle.cs
- DrawingContextWalker.cs
- PlatformNotSupportedException.cs
- PathGeometry.cs
- Cell.cs
- ProjectionPathBuilder.cs
- EntityStoreSchemaGenerator.cs
- FlowLayoutSettings.cs
- DetailsViewPagerRow.cs
- AppSettingsSection.cs
- AppDomainAttributes.cs
- TextReader.cs
- SoapFormatter.cs
- XmlILConstructAnalyzer.cs
- ObjectQueryProvider.cs
- StateWorkerRequest.cs
- ArithmeticException.cs
- ConnectionProviderAttribute.cs
- SchemaTypeEmitter.cs
- Mapping.cs
- DateTimeStorage.cs
- InternalTransaction.cs
- ShaderEffect.cs
- PrivilegedConfigurationManager.cs
- SvcFileManager.cs
- EmitterCache.cs
- CompiledQueryCacheEntry.cs
- TreeNodeStyle.cs
- SharedUtils.cs
- NameTable.cs
- PageAction.cs
- SortQuery.cs
- DBBindings.cs
- GeneralTransformCollection.cs
- Floater.cs
- BitmapMetadataBlob.cs
- GPStream.cs
- RenderingBiasValidation.cs
- OuterGlowBitmapEffect.cs
- FunctionGenerator.cs
- DictionaryEntry.cs
- SqlProviderManifest.cs
- MenuItem.cs