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;
///
/// Provides data for some events.
///
[AspNetHostingPermission(SecurityAction.LinkDemand, Level=AspNetHostingPermissionLevel.Minimal)]
[AspNetHostingPermission(SecurityAction.InheritanceDemand, Level=AspNetHostingPermissionLevel.Minimal)]
public class DetailsViewInsertEventArgs : CancelEventArgs {
private object _commandArgument;
private OrderedDictionary _values;
///
/// Initializes a new instance of the
/// class.
///
public DetailsViewInsertEventArgs(object commandArgument) : base(false) {
this._commandArgument = commandArgument;
}
///
/// Gets the argument to the command posted to the . This property is read-only.
///
public object CommandArgument {
get {
return _commandArgument;
}
}
///
/// Gets a OrderedDictionary to populate with inserted row values. This property is read-only.
///
public IOrderedDictionary Values {
get {
if (_values == null) {
_values = new OrderedDictionary();
}
return _values;
}
}
}
}
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- TreeIterators.cs
- SymDocumentType.cs
- XmlIncludeAttribute.cs
- ServiceReference.cs
- SqlProvider.cs
- HandlerBase.cs
- DispatcherEventArgs.cs
- DefaultSection.cs
- DoubleKeyFrameCollection.cs
- HitTestWithPointDrawingContextWalker.cs
- EncryptedData.cs
- OperationCanceledException.cs
- Window.cs
- DbParameterHelper.cs
- InputScopeManager.cs
- PackageRelationship.cs
- AssociationTypeEmitter.cs
- WaitHandleCannotBeOpenedException.cs
- VisualBrush.cs
- GlobalEventManager.cs
- ProjectionPath.cs
- HWStack.cs
- OleDbPermission.cs
- ValidatorCompatibilityHelper.cs
- FontNameEditor.cs
- TimeStampChecker.cs
- StrongNameSignatureInformation.cs
- HtmlInputRadioButton.cs
- ListViewUpdatedEventArgs.cs
- ResourceProperty.cs
- TreeViewBindingsEditor.cs
- embossbitmapeffect.cs
- EntityDataSourceView.cs
- XPathNode.cs
- SqlNodeTypeOperators.cs
- FontFamilyIdentifier.cs
- XmlSchemaInclude.cs
- ContainerCodeDomSerializer.cs
- bindurihelper.cs
- Util.cs
- SqlNodeAnnotation.cs
- ViewGenResults.cs
- Math.cs
- Bezier.cs
- FamilyTypefaceCollection.cs
- ScriptingScriptResourceHandlerSection.cs
- FacetChecker.cs
- AssociationSetEnd.cs
- StylusShape.cs
- WebPartDeleteVerb.cs
- Help.cs
- PolicyValidationException.cs
- RunInstallerAttribute.cs
- ToolStripItemClickedEventArgs.cs
- GCHandleCookieTable.cs
- DeviceContexts.cs
- XmlAttribute.cs
- ValueTypeFixupInfo.cs
- PassportAuthenticationEventArgs.cs
- InputBuffer.cs
- MatrixCamera.cs
- HttpGetProtocolImporter.cs
- ArraySegment.cs
- DeferrableContentConverter.cs
- FixedBufferAttribute.cs
- WhileDesigner.xaml.cs
- FormsAuthenticationEventArgs.cs
- RoleManagerModule.cs
- QilFactory.cs
- UserInitiatedNavigationPermission.cs
- ListParagraph.cs
- cache.cs
- XmlLanguage.cs
- DataGrid.cs
- _LocalDataStoreMgr.cs
- UIElementAutomationPeer.cs
- SqlPersonalizationProvider.cs
- iisPickupDirectory.cs
- DbCommandDefinition.cs
- WebConvert.cs
- UIAgentInitializationException.cs
- ProcessInputEventArgs.cs
- RadioButtonBaseAdapter.cs
- ScriptManagerProxy.cs
- WebPartAuthorizationEventArgs.cs
- FrameworkContentElement.cs
- OdbcConnectionPoolProviderInfo.cs
- ToolStripGrip.cs
- Typography.cs
- EtwProvider.cs
- TreeView.cs
- SqlFormatter.cs
- InternalDispatchObject.cs
- NativeMethodsCLR.cs
- PermissionRequestEvidence.cs
- MailMessage.cs
- CodeCommentStatementCollection.cs
- Thumb.cs
- XhtmlMobileTextWriter.cs
- DocumentOrderComparer.cs