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
- MemberInitExpression.cs
- DesignerUtils.cs
- DataStorage.cs
- Point.cs
- XmlReader.cs
- ParameterRefs.cs
- ResourcePool.cs
- CellQuery.cs
- WinFormsUtils.cs
- TypeRefElement.cs
- ContentHostHelper.cs
- RadialGradientBrush.cs
- StylusSystemGestureEventArgs.cs
- CodeAttachEventStatement.cs
- ContextBase.cs
- ConvertTextFrag.cs
- TypeUnloadedException.cs
- SQLBoolean.cs
- SqlBulkCopy.cs
- Model3DGroup.cs
- ObjectViewEntityCollectionData.cs
- Point3D.cs
- CachedFontFace.cs
- MappingItemCollection.cs
- CellParaClient.cs
- CorrelationService.cs
- IndexOutOfRangeException.cs
- WebConfigManager.cs
- TokenBasedSet.cs
- MetabaseSettingsIis7.cs
- WorkflowStateRollbackService.cs
- UTF8Encoding.cs
- StringAnimationUsingKeyFrames.cs
- SparseMemoryStream.cs
- NumericPagerField.cs
- StrongNameIdentityPermission.cs
- PagesSection.cs
- TableCell.cs
- Transform3DGroup.cs
- MultiPropertyDescriptorGridEntry.cs
- EntityCollection.cs
- unitconverter.cs
- DesignerAdapterUtil.cs
- URLMembershipCondition.cs
- ApplicationBuildProvider.cs
- TableAdapterManagerHelper.cs
- PerformanceCounterScope.cs
- SafeThemeHandle.cs
- DocumentEventArgs.cs
- TextParaLineResult.cs
- DiscoveryOperationContext.cs
- ChangeBlockUndoRecord.cs
- ByeMessageApril2005.cs
- DataGridColumnReorderingEventArgs.cs
- PaperSize.cs
- MemoryMappedFile.cs
- Expression.cs
- CommandID.cs
- XmlAttributeAttribute.cs
- PagerSettings.cs
- UmAlQuraCalendar.cs
- TextTreeTextNode.cs
- URLIdentityPermission.cs
- AnimationClockResource.cs
- WorkflowServiceNamespace.cs
- WorkflowFileItem.cs
- BaseCollection.cs
- ErrorsHelper.cs
- BulletChrome.cs
- DataGridViewRowPostPaintEventArgs.cs
- PeerIPHelper.cs
- SizeChangedEventArgs.cs
- QilNode.cs
- ImageUrlEditor.cs
- DataGridViewHitTestInfo.cs
- EmbeddedObject.cs
- UpdatePanel.cs
- SrgsGrammarCompiler.cs
- Matrix.cs
- WMIInterop.cs
- ThreadWorkerController.cs
- DeferredBinaryDeserializerExtension.cs
- WindowsGraphics.cs
- SoapObjectReader.cs
- OneWayBindingElementImporter.cs
- PropertyMap.cs
- InkCanvasSelectionAdorner.cs
- CacheEntry.cs
- Evidence.cs
- PolicyException.cs
- BindingNavigatorDesigner.cs
- DirectionalLight.cs
- BuildProviderAppliesToAttribute.cs
- XmlSerializationWriter.cs
- ArrayWithOffset.cs
- DbMetaDataColumnNames.cs
- CategoryAttribute.cs
- LinqDataSourceDisposeEventArgs.cs
- PointCollection.cs
- RegexRunner.cs