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
- TimeSpanOrInfiniteValidator.cs
- ToolStripManager.cs
- ToolStripSplitButton.cs
- Stream.cs
- PropertyValueChangedEvent.cs
- NotImplementedException.cs
- ParseNumbers.cs
- ObjectDataSourceMethodEventArgs.cs
- VoiceSynthesis.cs
- RadialGradientBrush.cs
- PropertyItem.cs
- ContractInstanceProvider.cs
- SoapExtensionTypeElementCollection.cs
- CodeTypeReferenceCollection.cs
- TypeConverterHelper.cs
- XmlQueryOutput.cs
- LinearQuaternionKeyFrame.cs
- SoapIncludeAttribute.cs
- CryptoApi.cs
- FontEmbeddingManager.cs
- ViewSimplifier.cs
- HwndProxyElementProvider.cs
- ReadOnlyHierarchicalDataSourceView.cs
- MembershipSection.cs
- SerializationStore.cs
- Internal.cs
- NumericUpDownAcceleration.cs
- XmlSchemaRedefine.cs
- ImageSource.cs
- WaitHandle.cs
- DistinctQueryOperator.cs
- dsa.cs
- BufferedResponseStream.cs
- DrawingAttributes.cs
- SqlDataSourceView.cs
- TriState.cs
- SqlInfoMessageEvent.cs
- GenericTypeParameterBuilder.cs
- ByteStreamMessageEncodingElement.cs
- CurrencyManager.cs
- HelpKeywordAttribute.cs
- SelectionHighlightInfo.cs
- Rectangle.cs
- ExtendedProperty.cs
- SaveWorkflowAsyncResult.cs
- SqlRemoveConstantOrderBy.cs
- ScriptingRoleServiceSection.cs
- FunctionUpdateCommand.cs
- CircleEase.cs
- FunctionCommandText.cs
- MonikerBuilder.cs
- ServiceOperationInfoTypeConverter.cs
- SqlUdtInfo.cs
- CapabilitiesPattern.cs
- BitmapImage.cs
- SmiRecordBuffer.cs
- PersistenceTypeAttribute.cs
- HierarchicalDataSourceControl.cs
- ProcessHostMapPath.cs
- WebPartDisplayModeCancelEventArgs.cs
- ListChangedEventArgs.cs
- Profiler.cs
- OutputCacheSection.cs
- ComponentChangingEvent.cs
- CacheForPrimitiveTypes.cs
- CursorConverter.cs
- ZipFileInfoCollection.cs
- AttributeCollection.cs
- CodeGroup.cs
- SharedPersonalizationStateInfo.cs
- _NtlmClient.cs
- MetadataPropertyvalue.cs
- ListenDesigner.cs
- SyndicationDeserializer.cs
- EpmHelper.cs
- ToolStripItemImageRenderEventArgs.cs
- SqlConnectionString.cs
- Int32AnimationBase.cs
- WorkflowEnvironment.cs
- IOException.cs
- MachineKeySection.cs
- ColumnBinding.cs
- EndPoint.cs
- WebGetAttribute.cs
- TransactionScopeDesigner.cs
- EntityDataReader.cs
- FlowLayoutPanel.cs
- FileDialog.cs
- RealProxy.cs
- DefaultEventAttribute.cs
- GridView.cs
- SoundPlayer.cs
- WorkflowRuntimeSection.cs
- TreeViewItem.cs
- AssemblyLoader.cs
- SafeNativeMethods.cs
- ISessionStateStore.cs
- RegexMatchCollection.cs
- PageClientProxyGenerator.cs
- DrawingContextWalker.cs