Code:
/ FXUpdate3074 / FXUpdate3074 / 1.1 / untmp / whidbey / QFE / ndp / fx / src / xsp / System / Web / UI / WebControls / FormViewInsertEventArgs.cs / 1 / FormViewInsertEventArgs.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 FormViewInsertEventArgs : CancelEventArgs { private object _commandArgument; private OrderedDictionary _values; ///Provides data for some ///events. /// public FormViewInsertEventArgs(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 Values { get { if (_values == null) { _values = new OrderedDictionary(); } return _values; } } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. // Copyright (c) Microsoft Corporation. All rights reserved.Gets a OrderedDictionary to populate with inserted row values. This property is read-only. ///
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- SqlFunctionAttribute.cs
- RuntimeIdentifierPropertyAttribute.cs
- sitestring.cs
- LayoutInformation.cs
- Visual3D.cs
- DrawItemEvent.cs
- GetPageCompletedEventArgs.cs
- ComboBoxItem.cs
- DataGridViewControlCollection.cs
- DataGridViewCellStyleConverter.cs
- Simplifier.cs
- webeventbuffer.cs
- SByteStorage.cs
- GeometryHitTestParameters.cs
- ellipse.cs
- AddInDeploymentState.cs
- Connector.cs
- ParserOptions.cs
- ConfigXmlText.cs
- XmlUtf8RawTextWriter.cs
- Cursor.cs
- MessageQueue.cs
- UIElementIsland.cs
- ApplicationServiceHelper.cs
- ConsoleCancelEventArgs.cs
- SystemEvents.cs
- CollectionChangedEventManager.cs
- FontNamesConverter.cs
- InternalConfigSettingsFactory.cs
- XhtmlBasicPageAdapter.cs
- entityreference_tresulttype.cs
- CompilerCollection.cs
- RequestNavigateEventArgs.cs
- Queue.cs
- OwnerDrawPropertyBag.cs
- DataGridPagerStyle.cs
- BindingSourceDesigner.cs
- TemplateBuilder.cs
- ListComponentEditorPage.cs
- BinaryConverter.cs
- WebPartDisplayMode.cs
- Axis.cs
- GeneralTransform3DGroup.cs
- SystemWebCachingSectionGroup.cs
- CustomExpression.cs
- bindurihelper.cs
- ModelTreeEnumerator.cs
- AuthorizationRuleCollection.cs
- DrawListViewItemEventArgs.cs
- DataFieldConverter.cs
- CultureMapper.cs
- MappedMetaModel.cs
- ClientRuntime.cs
- contentDescriptor.cs
- LineVisual.cs
- BitmapFrameDecode.cs
- TransformerTypeCollection.cs
- AnnotationResourceChangedEventArgs.cs
- WindowsListBox.cs
- ButtonChrome.cs
- DesignerSerializationVisibilityAttribute.cs
- AutomationFocusChangedEventArgs.cs
- LocalizeDesigner.cs
- PrintPreviewControl.cs
- DateTimeUtil.cs
- AnimationException.cs
- BooleanToSelectiveScrollingOrientationConverter.cs
- UserCancellationException.cs
- PenLineCapValidation.cs
- CodeArrayCreateExpression.cs
- CommentEmitter.cs
- Expression.cs
- DefaultPrintController.cs
- ProtocolsConfigurationEntry.cs
- CapabilitiesSection.cs
- VarInfo.cs
- metadatamappinghashervisitor.cs
- ToolboxControl.cs
- ActivationServices.cs
- DrawListViewColumnHeaderEventArgs.cs
- DbReferenceCollection.cs
- RealizationDrawingContextWalker.cs
- XmlSchemaComplexContent.cs
- Vector3DConverter.cs
- SoapMessage.cs
- ListParaClient.cs
- TrackingStringDictionary.cs
- GridViewColumnCollection.cs
- DesignerProperties.cs
- DynamicValidatorEventArgs.cs
- PanelStyle.cs
- ToolStripStatusLabel.cs
- FontWeight.cs
- TileBrush.cs
- StaticSiteMapProvider.cs
- SqlClientMetaDataCollectionNames.cs
- DynamicDocumentPaginator.cs
- FactoryMaker.cs
- Image.cs
- AuthenticationManager.cs