Code:
/ DotNET / DotNET / 8.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
- ApplicationActivator.cs
- TrustLevelCollection.cs
- SubstitutionList.cs
- RegexRunnerFactory.cs
- Token.cs
- BroadcastEventHelper.cs
- XmlResolver.cs
- WebPartConnectionsConfigureVerb.cs
- PropertyAccessVisitor.cs
- SplitterCancelEvent.cs
- MimeWriter.cs
- MonthCalendar.cs
- ListViewTableRow.cs
- ConnectionManagementSection.cs
- ColumnReorderedEventArgs.cs
- ProcessHost.cs
- XPathParser.cs
- NativeObjectSecurity.cs
- LightweightCodeGenerator.cs
- SourceLocationProvider.cs
- HttpListener.cs
- UInt16Storage.cs
- TimeZone.cs
- NullableLongAverageAggregationOperator.cs
- MaterialCollection.cs
- ErrorRuntimeConfig.cs
- MaskedTextProvider.cs
- ToolStripSystemRenderer.cs
- DataSourceCacheDurationConverter.cs
- XmlTextReaderImplHelpers.cs
- XhtmlBasicValidatorAdapter.cs
- SqlServices.cs
- LineVisual.cs
- ConfigurationHandlersInstallComponent.cs
- CheckedPointers.cs
- MultipleCopiesCollection.cs
- DbConnectionStringCommon.cs
- SqlAggregateChecker.cs
- CharKeyFrameCollection.cs
- InstanceStoreQueryResult.cs
- MarshalDirectiveException.cs
- Dispatcher.cs
- TraceInternal.cs
- Popup.cs
- DescriptionCreator.cs
- _ShellExpression.cs
- QilReference.cs
- ASCIIEncoding.cs
- bidPrivateBase.cs
- ScalarConstant.cs
- AncestorChangedEventArgs.cs
- DynamicDataRoute.cs
- MatrixStack.cs
- DataGridViewColumnDividerDoubleClickEventArgs.cs
- ListenerElementsCollection.cs
- XmlArrayItemAttribute.cs
- BinaryExpression.cs
- DaylightTime.cs
- cryptoapiTransform.cs
- SchemaInfo.cs
- DataGridCaption.cs
- StylusEventArgs.cs
- ProcessActivityTreeOptions.cs
- TriggerActionCollection.cs
- ContractDescription.cs
- XmlReader.cs
- AnnotationResourceCollection.cs
- HttpListenerTimeoutManager.cs
- RectangleF.cs
- AppDomainUnloadedException.cs
- Int16Animation.cs
- CellLabel.cs
- ScriptingProfileServiceSection.cs
- EndOfStreamException.cs
- UrlAuthFailedErrorFormatter.cs
- ZipIOFileItemStream.cs
- XmlUtil.cs
- FontSourceCollection.cs
- Graph.cs
- ObjectDataSourceDisposingEventArgs.cs
- DetailsViewPagerRow.cs
- UsernameTokenFactoryCredential.cs
- PolyLineSegment.cs
- DispatcherEventArgs.cs
- DragEvent.cs
- LockedBorderGlyph.cs
- WebPartTransformerAttribute.cs
- MutexSecurity.cs
- SrgsNameValueTag.cs
- SignatureHelper.cs
- MailBnfHelper.cs
- SspiNegotiationTokenAuthenticator.cs
- CFStream.cs
- RSAPKCS1SignatureFormatter.cs
- WebPartConnectionsDisconnectVerb.cs
- _FixedSizeReader.cs
- ClientConfigurationSystem.cs
- PeerValidationBehavior.cs
- TextRunCacheImp.cs
- NamedPipeProcessProtocolHandler.cs