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
- FastEncoder.cs
- tooltip.cs
- Button.cs
- PropertyChangedEventArgs.cs
- WindowsFormsLinkLabel.cs
- FunctionNode.cs
- Light.cs
- TextElementEditingBehaviorAttribute.cs
- RuntimeCompatibilityAttribute.cs
- EntitySetDataBindingList.cs
- CodeMethodInvokeExpression.cs
- DesignerForm.cs
- ObjectRef.cs
- MergeLocalizationDirectives.cs
- InputChannel.cs
- AppDomainProtocolHandler.cs
- ComponentSerializationService.cs
- NonClientArea.cs
- DataObjectPastingEventArgs.cs
- DataServiceEntityAttribute.cs
- RemoteWebConfigurationHostStream.cs
- LogLogRecord.cs
- LowerCaseStringConverter.cs
- InkPresenterAutomationPeer.cs
- Repeater.cs
- Screen.cs
- MLangCodePageEncoding.cs
- Util.cs
- DataShape.cs
- _PooledStream.cs
- TextBoxView.cs
- ItemsPanelTemplate.cs
- SharedTcpTransportManager.cs
- InteropTrackingRecord.cs
- XmlSchemaAnnotation.cs
- MultiPropertyDescriptorGridEntry.cs
- WorkItem.cs
- TableCellCollection.cs
- CalendarDateRangeChangingEventArgs.cs
- UnsafeNativeMethods.cs
- PersonalizationStateQuery.cs
- DefaultAuthorizationContext.cs
- Int32CollectionConverter.cs
- RegexTree.cs
- SortDescription.cs
- NumberSubstitution.cs
- StructuredTypeInfo.cs
- EventToken.cs
- MailBnfHelper.cs
- DateTime.cs
- HMACSHA384.cs
- EmbeddedObject.cs
- Calendar.cs
- RewritingPass.cs
- CodeCompileUnit.cs
- UnaryOperationBinder.cs
- UnknownWrapper.cs
- StorageAssociationSetMapping.cs
- EdmEntityTypeAttribute.cs
- SqlRowUpdatedEvent.cs
- ControlCollection.cs
- MessageSecurityTokenVersion.cs
- CookieParameter.cs
- InstalledFontCollection.cs
- SuppressIldasmAttribute.cs
- CodeSnippetCompileUnit.cs
- CatalogZoneBase.cs
- OwnerDrawPropertyBag.cs
- GlyphRun.cs
- ResourcePermissionBaseEntry.cs
- RadioButton.cs
- VariantWrapper.cs
- ButtonBase.cs
- ProcessRequestArgs.cs
- SqlNotificationRequest.cs
- CodeArrayCreateExpression.cs
- PageAsyncTaskManager.cs
- MatrixValueSerializer.cs
- QueryTreeBuilder.cs
- StylusPointPropertyId.cs
- SystemNetworkInterface.cs
- XpsFilter.cs
- UserControl.cs
- StylusPointPropertyInfoDefaults.cs
- KeyedPriorityQueue.cs
- HighContrastHelper.cs
- Wrapper.cs
- FixedSOMLineCollection.cs
- SafeNativeMethods.cs
- UIElementCollection.cs
- PartialToken.cs
- UserMapPath.cs
- PropertyCollection.cs
- TdsParserStaticMethods.cs
- CatalogZoneBase.cs
- Number.cs
- InstanceLockQueryResult.cs
- ActivityValidator.cs
- PatternMatcher.cs
- TextEditorDragDrop.cs