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; ////// [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
- MetafileHeaderWmf.cs
- NullEntityWrapper.cs
- GridViewColumnCollectionChangedEventArgs.cs
- CompilationUtil.cs
- DataServiceHost.cs
- XmlNamespaceDeclarationsAttribute.cs
- TextSelectionHighlightLayer.cs
- BindingList.cs
- XmlImplementation.cs
- LinkConverter.cs
- SolidBrush.cs
- OrCondition.cs
- _NegoStream.cs
- ISO2022Encoding.cs
- PrimaryKeyTypeConverter.cs
- InstanceDataCollection.cs
- Cell.cs
- CodePropertyReferenceExpression.cs
- ExtensibleClassFactory.cs
- BindingMAnagerBase.cs
- XmlSchemaDocumentation.cs
- CaseInsensitiveComparer.cs
- ExpressionBindingCollection.cs
- DataTemplateKey.cs
- Image.cs
- ColorAnimationUsingKeyFrames.cs
- ProfileParameter.cs
- ValueTypeFieldReference.cs
- ViewGenResults.cs
- LoginName.cs
- XmlStringTable.cs
- DataSourceCache.cs
- Code.cs
- MediaElement.cs
- URLIdentityPermission.cs
- LinqDataSourceUpdateEventArgs.cs
- DebugView.cs
- DoubleAnimation.cs
- BaseParagraph.cs
- EncodingTable.cs
- FastPropertyAccessor.cs
- ImageSourceConverter.cs
- KeyedHashAlgorithm.cs
- StylusTouchDevice.cs
- UInt32Converter.cs
- UidManager.cs
- UserPreferenceChangingEventArgs.cs
- MetadataArtifactLoaderXmlReaderWrapper.cs
- XhtmlBasicLiteralTextAdapter.cs
- XPathEmptyIterator.cs
- HttpCacheParams.cs
- SystemBrushes.cs
- StrongNameUtility.cs
- ExpandedWrapper.cs
- DocumentGridContextMenu.cs
- XmlSchemaCollection.cs
- NumericUpDownAcceleration.cs
- PassportIdentity.cs
- ToolStripDropDownItemDesigner.cs
- InputScopeManager.cs
- PolicyImporterElementCollection.cs
- WebBrowserPermission.cs
- SpellerInterop.cs
- CompletedAsyncResult.cs
- CustomError.cs
- TrackBarRenderer.cs
- MetadataItemCollectionFactory.cs
- ObjectSet.cs
- DataGridViewCell.cs
- BaseProcessor.cs
- WSTransactionSection.cs
- UserMapPath.cs
- LoginNameDesigner.cs
- DecoderExceptionFallback.cs
- ChannelBinding.cs
- ThreadPoolTaskScheduler.cs
- SessionStateUtil.cs
- DragEvent.cs
- COM2ICategorizePropertiesHandler.cs
- PointAnimation.cs
- baseaxisquery.cs
- RoleManagerEventArgs.cs
- DataServiceQuery.cs
- XmlElementElementCollection.cs
- NonSerializedAttribute.cs
- RowTypePropertyElement.cs
- SQLBytesStorage.cs
- Color.cs
- NotImplementedException.cs
- OdbcTransaction.cs
- CustomErrorsSectionWrapper.cs
- MonthChangedEventArgs.cs
- FieldBuilder.cs
- Rect3DConverter.cs
- WebPartExportVerb.cs
- ApplicationProxyInternal.cs
- XslAst.cs
- ProvideValueServiceProvider.cs
- DebugController.cs
- FunctionImportMapping.ReturnTypeRenameMapping.cs