Code:
/ FX-1434 / FX-1434 / 1.0 / untmp / whidbey / REDBITS / 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; } } } }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
- TemplateColumn.cs
- EdmSchemaError.cs
- ErrorWrapper.cs
- OrthographicCamera.cs
- BitmapCodecInfo.cs
- BreakRecordTable.cs
- Exceptions.cs
- AnnotationMap.cs
- ToolboxService.cs
- XmlConvert.cs
- HandlerMappingMemo.cs
- GradientBrush.cs
- StringConverter.cs
- SubMenuStyleCollection.cs
- CatalogZoneBase.cs
- ApplicationHost.cs
- ImageAnimator.cs
- AssemblyCacheEntry.cs
- SendActivityDesignerTheme.cs
- Nullable.cs
- ModelChangedEventArgsImpl.cs
- OLEDB_Util.cs
- SqlFlattener.cs
- BufferModesCollection.cs
- CodeEntryPointMethod.cs
- SiteMapPath.cs
- AsyncStreamReader.cs
- ToolStripItem.cs
- HtmlInputButton.cs
- PathSegmentCollection.cs
- AssociatedControlConverter.cs
- Attribute.cs
- PowerStatus.cs
- UInt16Storage.cs
- GetUserPreferenceRequest.cs
- XPathNodeList.cs
- NestedContainer.cs
- PerfCounters.cs
- DataRow.cs
- NameTable.cs
- ConfigurationSectionCollection.cs
- ImageMetadata.cs
- PersonalizationProviderHelper.cs
- SQLGuidStorage.cs
- AuthenticationException.cs
- ViewSimplifier.cs
- DictionaryBase.cs
- isolationinterop.cs
- OperationInfoBase.cs
- ActivityDesigner.cs
- InheritedPropertyChangedEventArgs.cs
- TypefaceMetricsCache.cs
- RawAppCommandInputReport.cs
- XmlSchemaExternal.cs
- NativeMethods.cs
- StickyNoteContentControl.cs
- ChtmlTextWriter.cs
- ClonableStack.cs
- SqlConnectionStringBuilder.cs
- ReturnEventArgs.cs
- DbConvert.cs
- ObjectStateEntry.cs
- FixedPosition.cs
- Registry.cs
- ToolStripDesignerAvailabilityAttribute.cs
- DataGridViewRowHeaderCell.cs
- Message.cs
- Listbox.cs
- CssClassPropertyAttribute.cs
- BuildDependencySet.cs
- CommandConverter.cs
- NameNode.cs
- BadImageFormatException.cs
- Drawing.cs
- RequestCacheValidator.cs
- WeakReferenceEnumerator.cs
- DataDocumentXPathNavigator.cs
- XmlHierarchicalEnumerable.cs
- TextServicesCompartment.cs
- CurrentChangedEventManager.cs
- PropertyEntry.cs
- CommandHelpers.cs
- PictureBox.cs
- GestureRecognitionResult.cs
- COAUTHINFO.cs
- XmlWrappingWriter.cs
- SpellerHighlightLayer.cs
- WarningException.cs
- Symbol.cs
- TypeElement.cs
- ProfileProvider.cs
- DictionaryManager.cs
- PocoPropertyAccessorStrategy.cs
- DetailsViewCommandEventArgs.cs
- NumberFormatInfo.cs
- ReadOnlyNameValueCollection.cs
- ProfilePropertySettings.cs
- GPPOINTF.cs
- IListConverters.cs
- RoleGroup.cs