Code:
/ FXUpdate3074 / FXUpdate3074 / 1.1 / untmp / whidbey / QFE / 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; } } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. // Copyright (c) Microsoft Corporation. All rights reserved.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
- PageContentCollection.cs
- SmtpNegotiateAuthenticationModule.cs
- EntityTransaction.cs
- Control.cs
- RoutingChannelExtension.cs
- XsdDateTime.cs
- HtmlImage.cs
- RegisteredExpandoAttribute.cs
- HMACRIPEMD160.cs
- BeginCreateSecurityTokenRequest.cs
- AccessedThroughPropertyAttribute.cs
- StylusDevice.cs
- DiscardableAttribute.cs
- HealthMonitoringSectionHelper.cs
- FileVersion.cs
- DayRenderEvent.cs
- ChangePasswordDesigner.cs
- DataGridColumn.cs
- MessageFault.cs
- NoResizeHandleGlyph.cs
- CannotUnloadAppDomainException.cs
- PeerApplicationLaunchInfo.cs
- PropertyBuilder.cs
- TreeViewImageIndexConverter.cs
- SoapEnumAttribute.cs
- LocalsItemDescription.cs
- ContentDisposition.cs
- UnaryQueryOperator.cs
- SQLConvert.cs
- DataServiceExpressionVisitor.cs
- PropertyGeneratedEventArgs.cs
- UnicodeEncoding.cs
- AggregateNode.cs
- SoapSchemaImporter.cs
- DataControlCommands.cs
- PrimitiveDataContract.cs
- GreenMethods.cs
- ScriptingScriptResourceHandlerSection.cs
- Trace.cs
- JournalEntry.cs
- PerspectiveCamera.cs
- CustomError.cs
- XamlToRtfWriter.cs
- GorillaCodec.cs
- PropertyManager.cs
- BypassElementCollection.cs
- VBCodeProvider.cs
- Mappings.cs
- InvokeBase.cs
- BinaryFormatterSinks.cs
- ScriptIgnoreAttribute.cs
- ModelEditingScope.cs
- ReferentialConstraintRoleElement.cs
- AsyncPostBackTrigger.cs
- Profiler.cs
- DataGridRowsPresenter.cs
- DoubleAnimationUsingKeyFrames.cs
- EndPoint.cs
- XmlSchemaAttributeGroup.cs
- Attributes.cs
- VectorValueSerializer.cs
- SystemResourceHost.cs
- SortedDictionary.cs
- PhysicalAddress.cs
- linebase.cs
- DataGridCellAutomationPeer.cs
- CollectionType.cs
- MasterPageParser.cs
- BaseTemplateParser.cs
- MediaContext.cs
- PopupRootAutomationPeer.cs
- PropertyItemInternal.cs
- FactoryGenerator.cs
- TextPatternIdentifiers.cs
- IpcClientChannel.cs
- XmlSerializationWriter.cs
- TransformerConfigurationWizardBase.cs
- PagesSection.cs
- EntitySetBase.cs
- WsdlServiceChannelBuilder.cs
- IfJoinedCondition.cs
- HyperlinkAutomationPeer.cs
- Resources.Designer.cs
- SafeSecurityHelper.cs
- XmlNamespaceDeclarationsAttribute.cs
- SmtpNetworkElement.cs
- MessagingDescriptionAttribute.cs
- XmlNode.cs
- SocketConnection.cs
- IgnoreFlushAndCloseStream.cs
- MethodImplAttribute.cs
- ComboBox.cs
- CodeChecksumPragma.cs
- Track.cs
- DropShadowEffect.cs
- BaseResourcesBuildProvider.cs
- CodeCompiler.cs
- BrowsableAttribute.cs
- Timeline.cs
- TextBoxBase.cs