Code:
/ 4.0 / 4.0 / 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. ///// 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
- AvTraceFormat.cs
- DataGridViewCellParsingEventArgs.cs
- OleDbParameter.cs
- GetPageCompletedEventArgs.cs
- IRCollection.cs
- XNodeSchemaApplier.cs
- Atom10FormatterFactory.cs
- BuildDependencySet.cs
- ProfileBuildProvider.cs
- DataGridTableCollection.cs
- PageParser.cs
- StorageEntityTypeMapping.cs
- ExceptionCollection.cs
- TCPClient.cs
- ZipIOFileItemStream.cs
- XamlClipboardData.cs
- TimeoutException.cs
- ProfessionalColors.cs
- DataServiceConfiguration.cs
- PrePrepareMethodAttribute.cs
- PolygonHotSpot.cs
- TemplatedWizardStep.cs
- SocketConnection.cs
- ControlBindingsCollection.cs
- BamlBinaryWriter.cs
- UICuesEvent.cs
- ContentOperations.cs
- ModulesEntry.cs
- diagnosticsswitches.cs
- ExtractCollection.cs
- ImageAutomationPeer.cs
- KeyEvent.cs
- ReflectionPermission.cs
- DynamicValueConverter.cs
- FlowDocumentPageViewerAutomationPeer.cs
- DataGridViewIntLinkedList.cs
- Attributes.cs
- ToolboxBitmapAttribute.cs
- CurrencyWrapper.cs
- ToggleProviderWrapper.cs
- AttachedProperty.cs
- XsltArgumentList.cs
- InvalidateEvent.cs
- SystemDropShadowChrome.cs
- _SecureChannel.cs
- DataSourceCacheDurationConverter.cs
- FontSource.cs
- CompilerHelpers.cs
- InkCollectionBehavior.cs
- ExclusiveCanonicalizationTransform.cs
- PrincipalPermission.cs
- ContourSegment.cs
- UnsafeNativeMethods.cs
- ListViewAutomationPeer.cs
- EnterpriseServicesHelper.cs
- DateTimeValueSerializerContext.cs
- DataColumnMapping.cs
- ChannelBinding.cs
- HttpEncoderUtility.cs
- QualifiedCellIdBoolean.cs
- HttpApplication.cs
- ElementUtil.cs
- DeclaredTypeElement.cs
- AudioFormatConverter.cs
- DynamicILGenerator.cs
- SettingsPropertyNotFoundException.cs
- BCryptNative.cs
- MenuDesigner.cs
- LinkLabel.cs
- ActivityXRefPropertyEditor.cs
- XamlBrushSerializer.cs
- WebPartCancelEventArgs.cs
- RegexNode.cs
- ImmutableObjectAttribute.cs
- XmlSerializerObjectSerializer.cs
- XamlBuildProvider.cs
- IconConverter.cs
- IisTraceListener.cs
- TextAnchor.cs
- DeclarativeCatalogPart.cs
- ExtendedPropertyDescriptor.cs
- CDSCollectionETWBCLProvider.cs
- WebPartConnectionsCloseVerb.cs
- EnumBuilder.cs
- ReverseInheritProperty.cs
- CheckBoxBaseAdapter.cs
- webeventbuffer.cs
- PreservationFileReader.cs
- ConvertEvent.cs
- ImageMapEventArgs.cs
- TransformedBitmap.cs
- Util.cs
- BehaviorDragDropEventArgs.cs
- InnerItemCollectionView.cs
- OledbConnectionStringbuilder.cs
- DataControlReferenceCollection.cs
- AuthenticationService.cs
- LayoutSettings.cs
- CngAlgorithmGroup.cs
- HashAlgorithm.cs