Code:
/ FX-1434 / FX-1434 / 1.0 / untmp / whidbey / REDBITS / ndp / fx / src / xsp / System / Web / UI / WebControls / DetailsViewInsertEventArgs.cs / 1 / DetailsViewInsertEventArgs.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 DetailsViewInsertEventArgs : CancelEventArgs { private object _commandArgument; private OrderedDictionary _values; ///Provides data for some ///events. /// public DetailsViewInsertEventArgs(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
- ListItemParagraph.cs
- SequenceNumber.cs
- FaultHandlingFilter.cs
- DocComment.cs
- RemoteWebConfigurationHostStream.cs
- XmlSchemaValidator.cs
- DependencyPropertyDescriptor.cs
- EdmProviderManifest.cs
- SqlBulkCopyColumnMappingCollection.cs
- TimeSpanValidator.cs
- WebPartVerbCollection.cs
- CaseStatementProjectedSlot.cs
- MediaContextNotificationWindow.cs
- ListViewTableCell.cs
- ProcessHostMapPath.cs
- ExpandedWrapper.cs
- XmlSchemaRedefine.cs
- DataSourceCacheDurationConverter.cs
- Memoizer.cs
- _ListenerResponseStream.cs
- SoapFormatExtensions.cs
- XmlSchemaSimpleContentExtension.cs
- ViewSimplifier.cs
- UserMapPath.cs
- SiteOfOriginPart.cs
- TimelineClockCollection.cs
- DispatcherHookEventArgs.cs
- MimeMapping.cs
- Button.cs
- MissingManifestResourceException.cs
- VectorCollectionValueSerializer.cs
- SyndicationItemFormatter.cs
- TextTreePropertyUndoUnit.cs
- Wildcard.cs
- Typography.cs
- ProcessHostMapPath.cs
- AnimationException.cs
- DataTableReaderListener.cs
- StartUpEventArgs.cs
- ParsedAttributeCollection.cs
- FocusWithinProperty.cs
- SwitchLevelAttribute.cs
- IssuanceLicense.cs
- LinkConverter.cs
- NativeMethods.cs
- XmlSchemaAttribute.cs
- LogArchiveSnapshot.cs
- FileDataSource.cs
- basevalidator.cs
- DataColumnMappingCollection.cs
- Environment.cs
- Keywords.cs
- ArrayWithOffset.cs
- WebPartZoneCollection.cs
- XmlSerializer.cs
- SynchronizationScope.cs
- AccessibleObject.cs
- XmlDocumentSchema.cs
- ColorEditor.cs
- AdRotator.cs
- SafeRightsManagementEnvironmentHandle.cs
- AutomationPropertyInfo.cs
- SubstitutionList.cs
- HeaderUtility.cs
- WorkflowRuntimeSection.cs
- ConnectionProviderAttribute.cs
- ConnectionStringsExpressionEditor.cs
- ListParagraph.cs
- ManagementEventWatcher.cs
- baseshape.cs
- SafeFreeMibTable.cs
- QuaternionAnimation.cs
- DateTimePicker.cs
- ChannelDemuxer.cs
- InvalidPrinterException.cs
- SerializationSectionGroup.cs
- EdmEntityTypeAttribute.cs
- SQLSingle.cs
- AsyncResult.cs
- StrokeFIndices.cs
- ISAPIWorkerRequest.cs
- AsyncContentLoadedEventArgs.cs
- XmlCodeExporter.cs
- MaskedTextProvider.cs
- ErrorStyle.cs
- ErrorStyle.cs
- SqlUtils.cs
- CollectionViewProxy.cs
- CommunicationObjectAbortedException.cs
- _HTTPDateParse.cs
- ObjectConverter.cs
- AsyncPostBackTrigger.cs
- TabPanel.cs
- ConfigXmlText.cs
- BasicKeyConstraint.cs
- BindingsCollection.cs
- DigitShape.cs
- oledbconnectionstring.cs
- TextContainerChangedEventArgs.cs
- ActivityStatusChangeEventArgs.cs