Code:
/ FX-1434 / FX-1434 / 1.0 / untmp / whidbey / REDBITS / ndp / fx / src / xsp / System / Web / UI / WebControls / FormViewInsertEventArgs.cs / 1 / 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; using System.Security.Permissions; ////// [AspNetHostingPermission(SecurityAction.LinkDemand, Level=AspNetHostingPermissionLevel.Minimal)] [AspNetHostingPermission(SecurityAction.InheritanceDemand, Level=AspNetHostingPermissionLevel.Minimal)] 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; } } } }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
- TextElement.cs
- PointLightBase.cs
- HtmlImage.cs
- Metafile.cs
- GroupBox.cs
- PersistenceTypeAttribute.cs
- AnnotationComponentChooser.cs
- ElementHost.cs
- CoTaskMemHandle.cs
- RadioButton.cs
- SelectionUIService.cs
- IPEndPointCollection.cs
- WindowsTab.cs
- VectorCollectionValueSerializer.cs
- BaseParaClient.cs
- WebServiceErrorEvent.cs
- BinHexEncoding.cs
- UpdatePanelTriggerCollection.cs
- PeerNameResolver.cs
- UInt16Converter.cs
- TextDpi.cs
- OpenFileDialog.cs
- SkinBuilder.cs
- TcpAppDomainProtocolHandler.cs
- TileModeValidation.cs
- DesignBindingPropertyDescriptor.cs
- ManagedIStream.cs
- mediaeventargs.cs
- ObjectListFieldsPage.cs
- ContentElementCollection.cs
- WhitespaceRuleReader.cs
- XsltArgumentList.cs
- PersistenceTypeAttribute.cs
- ImageDrawing.cs
- HelpOperationInvoker.cs
- ApplicationFileParser.cs
- TypeConvertions.cs
- ToolStripSystemRenderer.cs
- WebZone.cs
- TextRangeEdit.cs
- ComponentEditorPage.cs
- TransactionWaitAsyncResult.cs
- _NestedSingleAsyncResult.cs
- XPathNodeList.cs
- DragEvent.cs
- ApplicationActivator.cs
- compensatingcollection.cs
- EnumBuilder.cs
- ProxyWebPartManager.cs
- DefaultSection.cs
- EditingMode.cs
- EntitySet.cs
- SerialReceived.cs
- GridSplitter.cs
- XmlSchemas.cs
- HMACSHA384.cs
- ItemCollection.cs
- SocketAddress.cs
- HttpClientCertificate.cs
- CodeVariableReferenceExpression.cs
- BypassElementCollection.cs
- Padding.cs
- ExternalFile.cs
- ConfigurationManagerInternalFactory.cs
- SEHException.cs
- GridItemPattern.cs
- FontFaceLayoutInfo.cs
- ReflectionUtil.cs
- InheritanceAttribute.cs
- TabControlCancelEvent.cs
- SelectionListDesigner.cs
- XPathSingletonIterator.cs
- PageParser.cs
- ReceiveMessageRecord.cs
- IteratorFilter.cs
- Image.cs
- _AcceptOverlappedAsyncResult.cs
- DirectoryNotFoundException.cs
- ProcessModule.cs
- ProxyAttribute.cs
- FontCollection.cs
- PageStatePersister.cs
- BooleanKeyFrameCollection.cs
- OLEDB_Util.cs
- SchemaElement.cs
- ContentElement.cs
- LinqDataSource.cs
- SecurityHelper.cs
- XmlCollation.cs
- DBSqlParserTableCollection.cs
- GlyphElement.cs
- PriorityBindingExpression.cs
- ModulesEntry.cs
- KoreanCalendar.cs
- DataPagerCommandEventArgs.cs
- DataGridViewRowConverter.cs
- ApplicationTrust.cs
- Rotation3DAnimationBase.cs
- Transform3DGroup.cs
- Listbox.cs