Code:
/ FXUpdate3074 / FXUpdate3074 / 1.1 / untmp / whidbey / QFE / 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. // Copyright (c) Microsoft Corporation. All rights reserved.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
- RelationshipFixer.cs
- WindowsScrollBar.cs
- ObjectDisposedException.cs
- VisualTreeUtils.cs
- HttpListenerContext.cs
- Mapping.cs
- PluggableProtocol.cs
- MouseWheelEventArgs.cs
- Debug.cs
- XomlCompilerResults.cs
- BitmapPalettes.cs
- ObjectPersistData.cs
- EndpointDiscoveryElement.cs
- CapabilitiesState.cs
- FormatConvertedBitmap.cs
- PermissionAttributes.cs
- DbQueryCommandTree.cs
- SqlDataSourceCommandEventArgs.cs
- TransformGroup.cs
- XmlSchemaExternal.cs
- StrokeCollection2.cs
- DecimalFormatter.cs
- ContentPresenter.cs
- DataError.cs
- VSWCFServiceContractGenerator.cs
- BufferedStream.cs
- PointLight.cs
- HttpValueCollection.cs
- ResourcePool.cs
- ApplicationBuildProvider.cs
- SetStoryboardSpeedRatio.cs
- CompilerScopeManager.cs
- WebServiceHostFactory.cs
- XmlBoundElement.cs
- InheritanceRules.cs
- BaseValidatorDesigner.cs
- FieldTemplateUserControl.cs
- ObjectDataSourceFilteringEventArgs.cs
- RenderContext.cs
- IdentityValidationException.cs
- _CacheStreams.cs
- CultureMapper.cs
- ScrollChrome.cs
- DeploymentSection.cs
- TableRow.cs
- DesignTimeDataBinding.cs
- SQLGuidStorage.cs
- ParsedAttributeCollection.cs
- ConnectionManager.cs
- HttpVersion.cs
- RequiredFieldValidator.cs
- XmlSchemaAnnotated.cs
- WorkflowIdleBehavior.cs
- FormsAuthenticationConfiguration.cs
- TraceContextRecord.cs
- XmlKeywords.cs
- DelegateHelpers.Generated.cs
- SimpleLine.cs
- ECDiffieHellmanCng.cs
- IssuedTokenServiceCredential.cs
- MiniMapControl.xaml.cs
- AttributeXamlType.cs
- XmlObjectSerializer.cs
- SoapReflector.cs
- Event.cs
- KnownTypesHelper.cs
- HtmlInputReset.cs
- PrintDialog.cs
- MSG.cs
- DeferrableContent.cs
- ThicknessConverter.cs
- ClassValidator.cs
- GridSplitterAutomationPeer.cs
- OuterGlowBitmapEffect.cs
- ButtonFieldBase.cs
- SoapObjectWriter.cs
- ProviderSettings.cs
- Attribute.cs
- ResXBuildProvider.cs
- UpDownEvent.cs
- GAC.cs
- COAUTHINFO.cs
- StringBuilder.cs
- RoleManagerSection.cs
- WebConfigurationHostFileChange.cs
- RoutedEventHandlerInfo.cs
- LocalizableAttribute.cs
- XmlNodeReader.cs
- InternalConfigConfigurationFactory.cs
- MatrixUtil.cs
- WrappedKeySecurityToken.cs
- RoutedCommand.cs
- DesignBindingValueUIHandler.cs
- PlanCompiler.cs
- Control.cs
- DataPagerFieldItem.cs
- UserValidatedEventArgs.cs
- ConfigurationConverterBase.cs
- Bitmap.cs
- OleDbCommand.cs