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
- SqlProcedureAttribute.cs
- HttpListenerTimeoutManager.cs
- StringUtil.cs
- ReadOnlyNameValueCollection.cs
- OperationDescription.cs
- SrgsElementList.cs
- LocatorManager.cs
- TreeViewItem.cs
- BinaryConverter.cs
- BaseDataBoundControl.cs
- FormViewInsertEventArgs.cs
- RuntimeCompatibilityAttribute.cs
- Constraint.cs
- TextChange.cs
- CodeLabeledStatement.cs
- OutputCacheSettings.cs
- ButtonPopupAdapter.cs
- WorkflowApplication.cs
- LongPath.cs
- ITextView.cs
- OleDbDataReader.cs
- StringUtil.cs
- GridLength.cs
- TableRow.cs
- SuppressMergeCheckAttribute.cs
- GeneralTransform3D.cs
- HttpModuleAction.cs
- PluralizationServiceUtil.cs
- SafePointer.cs
- CheckableControlBaseAdapter.cs
- FrameworkObject.cs
- SamlAction.cs
- PersistencePipeline.cs
- ScrollBarAutomationPeer.cs
- Decorator.cs
- DSASignatureDeformatter.cs
- PasswordRecovery.cs
- XslAst.cs
- SHA256Managed.cs
- NullRuntimeConfig.cs
- DecimalStorage.cs
- BatchParser.cs
- RoutedEventArgs.cs
- IxmlLineInfo.cs
- Control.cs
- LineGeometry.cs
- HiddenFieldDesigner.cs
- BasicExpressionVisitor.cs
- HuffModule.cs
- DigestComparer.cs
- PeerObject.cs
- ExceptionRoutedEventArgs.cs
- ToolStripPanelRow.cs
- FlowDocumentReaderAutomationPeer.cs
- XmlC14NWriter.cs
- PeerContact.cs
- XmlQueryContext.cs
- GeometryDrawing.cs
- CompilerTypeWithParams.cs
- GradientBrush.cs
- UrlEncodedParameterWriter.cs
- KeyConstraint.cs
- XPathScanner.cs
- DirectoryInfo.cs
- NewExpression.cs
- SingleTagSectionHandler.cs
- DrawingState.cs
- EdmPropertyAttribute.cs
- Fx.cs
- NativeMethods.cs
- SystemIPv6InterfaceProperties.cs
- ListViewTableCell.cs
- UrlAuthFailedErrorFormatter.cs
- RectangleConverter.cs
- Form.cs
- DrawItemEvent.cs
- NonSerializedAttribute.cs
- AssemblyEvidenceFactory.cs
- AliasedSlot.cs
- ChangeInterceptorAttribute.cs
- InheritanceAttribute.cs
- LayoutTable.cs
- WebPartsPersonalization.cs
- KeyInstance.cs
- ResourceCollectionInfo.cs
- Panel.cs
- XmlName.cs
- TemplateBamlTreeBuilder.cs
- CacheMemory.cs
- DesigntimeLicenseContextSerializer.cs
- SecurityHeaderElementInferenceEngine.cs
- AddInServer.cs
- WebPartCollection.cs
- GeneratedCodeAttribute.cs
- ConditionalAttribute.cs
- ProjectedSlot.cs
- HMACSHA1.cs
- XsdDuration.cs
- Attribute.cs
- UserPreferenceChangingEventArgs.cs