Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / xsp / System / Web / UI / WebControls / FormViewInsertEventArgs.cs / 1305376 / FormViewInsertEventArgs.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; ////// public class FormViewInsertEventArgs : CancelEventArgs { private object _commandArgument; private OrderedDictionary _values; ///Provides data for some ///events. /// public FormViewInsertEventArgs(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.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
- DataGridItemCollection.cs
- MetabaseServerConfig.cs
- TreeViewHitTestInfo.cs
- TransformPatternIdentifiers.cs
- ExpressionBuilderCollection.cs
- XmlAttributeCache.cs
- Membership.cs
- Number.cs
- MessageDescriptionCollection.cs
- MimeMultiPart.cs
- controlskin.cs
- EntityAdapter.cs
- WebPartCancelEventArgs.cs
- RuleSettingsCollection.cs
- DeferredRunTextReference.cs
- Int32Converter.cs
- UnsafeNativeMethods.cs
- FormsAuthenticationEventArgs.cs
- RuleInfoComparer.cs
- CodeDirectiveCollection.cs
- PointCollection.cs
- QilScopedVisitor.cs
- XmlReflectionMember.cs
- messageonlyhwndwrapper.cs
- TextRenderer.cs
- SerializationInfoEnumerator.cs
- TableItemProviderWrapper.cs
- ProviderConnectionPoint.cs
- PointLight.cs
- CalendarButton.cs
- HttpWebResponse.cs
- LinearQuaternionKeyFrame.cs
- ConsumerConnectionPoint.cs
- Int16Converter.cs
- XmlSerializerFactory.cs
- DataServiceQueryException.cs
- Wildcard.cs
- Label.cs
- securitymgrsite.cs
- ListViewDeletedEventArgs.cs
- ColorPalette.cs
- ExtentCqlBlock.cs
- ScrollEvent.cs
- DivideByZeroException.cs
- CompiledQueryCacheEntry.cs
- CellIdBoolean.cs
- GPRECTF.cs
- WorkerRequest.cs
- DataError.cs
- ClientFormsIdentity.cs
- ConnectionStringsSection.cs
- ItemMap.cs
- OutputCacheProfileCollection.cs
- webbrowsersite.cs
- SmiRequestExecutor.cs
- RectAnimationClockResource.cs
- DataGridViewCellStyle.cs
- ButtonStandardAdapter.cs
- System.Data.OracleClient_BID.cs
- _NegoStream.cs
- UserControlCodeDomTreeGenerator.cs
- ObjectTag.cs
- TypeConverter.cs
- FileAuthorizationModule.cs
- AuthenticateEventArgs.cs
- documentation.cs
- SafeViewOfFileHandle.cs
- UnconditionalPolicy.cs
- ToolStripDropDownItemDesigner.cs
- SQLDateTime.cs
- IdnMapping.cs
- EnumerationRangeValidationUtil.cs
- StartUpEventArgs.cs
- TraceData.cs
- ProviderConnectionPointCollection.cs
- Camera.cs
- TabPanel.cs
- CodeAccessSecurityEngine.cs
- ObjectListField.cs
- ConnectionProviderAttribute.cs
- PropertyGrid.cs
- ConnectionConsumerAttribute.cs
- _ListenerAsyncResult.cs
- PersonalizablePropertyEntry.cs
- StringInfo.cs
- WebHeaderCollection.cs
- Base64Decoder.cs
- Rfc2898DeriveBytes.cs
- WebPartCatalogCloseVerb.cs
- SqlFunctionAttribute.cs
- WindowsFormsHost.cs
- UnhandledExceptionEventArgs.cs
- XmlDataImplementation.cs
- LicenseProviderAttribute.cs
- CodeArrayIndexerExpression.cs
- pingexception.cs
- WebServiceBindingAttribute.cs
- XmlDocument.cs
- UniqueContractNameValidationBehavior.cs
- HostingEnvironmentException.cs