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
- BinarySerializer.cs
- DllNotFoundException.cs
- Random.cs
- followingsibling.cs
- SortFieldComparer.cs
- JpegBitmapDecoder.cs
- FormsAuthenticationUserCollection.cs
- SystemColors.cs
- XmlFormatExtensionPointAttribute.cs
- WebPartTransformerAttribute.cs
- TiffBitmapEncoder.cs
- FieldAccessException.cs
- RenderingBiasValidation.cs
- CodeExpressionStatement.cs
- FrameworkContentElement.cs
- ClickablePoint.cs
- UnmanagedMarshal.cs
- StoreItemCollection.Loader.cs
- XpsTokenContext.cs
- ParseChildrenAsPropertiesAttribute.cs
- XamlParser.cs
- TrackingMemoryStream.cs
- MultiAsyncResult.cs
- sqlstateclientmanager.cs
- IconBitmapDecoder.cs
- PointConverter.cs
- UserControl.cs
- CurrentTimeZone.cs
- CellParagraph.cs
- Vector3DConverter.cs
- PeerNameRecordCollection.cs
- ImmutableObjectAttribute.cs
- HtmlWindow.cs
- Intellisense.cs
- XmlSchemas.cs
- WebSysDefaultValueAttribute.cs
- EditorPart.cs
- TimeSpanOrInfiniteConverter.cs
- Automation.cs
- DataGridViewCellConverter.cs
- FontFamily.cs
- XmlValidatingReader.cs
- PolyQuadraticBezierSegmentFigureLogic.cs
- StreamingContext.cs
- ItemCollection.cs
- IPEndPointCollection.cs
- HotSpot.cs
- CqlLexerHelpers.cs
- BoolExpressionVisitors.cs
- DynamicUpdateCommand.cs
- SimpleApplicationHost.cs
- CompareValidator.cs
- XmlElementAttributes.cs
- ObjRef.cs
- CellRelation.cs
- CheckBox.cs
- TableCell.cs
- XamlReader.cs
- InheritanceAttribute.cs
- RepeaterDesigner.cs
- Rotation3D.cs
- RuntimeHandles.cs
- FlowchartDesigner.Helpers.cs
- TypeBuilderInstantiation.cs
- HtmlProps.cs
- BookmarkOptionsHelper.cs
- WhereQueryOperator.cs
- EdmType.cs
- DataTableReaderListener.cs
- StorageMappingFragment.cs
- RootBuilder.cs
- Visual3D.cs
- DynamicQueryableWrapper.cs
- SafeFileMapViewHandle.cs
- ContractAdapter.cs
- validation.cs
- LowerCaseStringConverter.cs
- ActivityCodeDomSerializationManager.cs
- EffectiveValueEntry.cs
- ListControlStringCollectionEditor.cs
- BaseCAMarshaler.cs
- AssociationTypeEmitter.cs
- PerformanceCounterPermissionEntry.cs
- XamlPathDataSerializer.cs
- ContractTypeNameCollection.cs
- XmlTextReaderImpl.cs
- columnmapfactory.cs
- httpapplicationstate.cs
- FocusChangedEventArgs.cs
- ScriptModule.cs
- PolyLineSegmentFigureLogic.cs
- PenContext.cs
- Command.cs
- MetadataSource.cs
- PageHandlerFactory.cs
- DeferrableContentConverter.cs
- ColumnPropertiesGroup.cs
- DataGridViewRowStateChangedEventArgs.cs
- HttpRequestBase.cs
- LinkDescriptor.cs