Code:
/ FX-1434 / FX-1434 / 1.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
- SystemWebSectionGroup.cs
- XPathMultyIterator.cs
- AddInActivator.cs
- KeyTimeConverter.cs
- WebPartExportVerb.cs
- WebEventCodes.cs
- validation.cs
- UnsignedPublishLicense.cs
- DataSourceHelper.cs
- ProxyFragment.cs
- BamlBinaryReader.cs
- CardSpaceShim.cs
- BitmapEffectState.cs
- CapiHashAlgorithm.cs
- PromptEventArgs.cs
- Accessible.cs
- _NTAuthentication.cs
- WebColorConverter.cs
- TextTreeTextBlock.cs
- LoginView.cs
- Helper.cs
- ViewManager.cs
- IsolatedStorage.cs
- MailWriter.cs
- ProfileModule.cs
- GeneralTransform3DCollection.cs
- TcpSocketManager.cs
- HttpGetClientProtocol.cs
- ListView.cs
- IProvider.cs
- ReliableMessagingVersionConverter.cs
- FormViewInsertedEventArgs.cs
- UnmanagedMarshal.cs
- PassportAuthentication.cs
- COM2Properties.cs
- Route.cs
- IndentedWriter.cs
- AbstractExpressions.cs
- NTAccount.cs
- XmlUnspecifiedAttribute.cs
- BinaryFormatterWriter.cs
- SqlBulkCopyColumnMappingCollection.cs
- ScriptManagerProxy.cs
- HttpCacheVary.cs
- SoapFault.cs
- EmptyStringExpandableObjectConverter.cs
- UnlockInstanceAsyncResult.cs
- InvalidTimeZoneException.cs
- TransformerConfigurationWizardBase.cs
- WmfPlaceableFileHeader.cs
- LogSwitch.cs
- ConfigurationLocationCollection.cs
- Rotation3DAnimation.cs
- DictionarySectionHandler.cs
- EqualityComparer.cs
- ConfigurationFileMap.cs
- Table.cs
- WebPartVerbCollection.cs
- WindowsFont.cs
- COM2FontConverter.cs
- ReaderWriterLockSlim.cs
- DecimalConverter.cs
- FactoryGenerator.cs
- Formatter.cs
- XmlIncludeAttribute.cs
- Assert.cs
- MediaSystem.cs
- CellPartitioner.cs
- FrameworkObject.cs
- MessageQueueTransaction.cs
- RouteValueExpressionBuilder.cs
- ButtonBaseAdapter.cs
- DataMisalignedException.cs
- OverflowException.cs
- EdmItemCollection.cs
- XmlSchemaSimpleTypeList.cs
- AspNetSynchronizationContext.cs
- SequentialOutput.cs
- WsatTransactionInfo.cs
- HyperLink.cs
- CodeMemberProperty.cs
- NetPipeSection.cs
- TdsRecordBufferSetter.cs
- Type.cs
- SystemNetworkInterface.cs
- HMACMD5.cs
- OdbcFactory.cs
- FlatButtonAppearance.cs
- CodeGeneratorOptions.cs
- RangeExpression.cs
- CodeDomDesignerLoader.cs
- EventMemberCodeDomSerializer.cs
- StringArrayConverter.cs
- SchemaTableColumn.cs
- Helper.cs
- InputScopeNameConverter.cs
- LinearQuaternionKeyFrame.cs
- WinCategoryAttribute.cs
- InfoCardPolicy.cs
- TableDetailsRow.cs