Code:
/ DotNET / DotNET / 8.0 / untmp / whidbey / REDBITS / ndp / fx / src / xsp / System / Web / UI / WebControls / DetailsViewInsertEventArgs.cs / 1 / DetailsViewInsertEventArgs.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 DetailsViewInsertEventArgs : CancelEventArgs { private object _commandArgument; private OrderedDictionary _values; ///Provides data for some ///events. /// public DetailsViewInsertEventArgs(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
- SpecialFolderEnumConverter.cs
- BasicBrowserDialog.cs
- SignatureHelper.cs
- PEFileEvidenceFactory.cs
- XPathDocumentIterator.cs
- QueueSurrogate.cs
- ScrollBar.cs
- IsolatedStoragePermission.cs
- SubqueryRules.cs
- Pen.cs
- DesignerDataStoredProcedure.cs
- ParameterToken.cs
- KeyedByTypeCollection.cs
- ScrollItemProviderWrapper.cs
- LocationSectionRecord.cs
- PolicyManager.cs
- XmlSignificantWhitespace.cs
- ToolStripSplitStackLayout.cs
- RecognizerInfo.cs
- CapabilitiesState.cs
- ExceptionWrapper.cs
- JsonWriter.cs
- SessionEndingCancelEventArgs.cs
- Size.cs
- HideDisabledControlAdapter.cs
- SafeFileMapViewHandle.cs
- ListViewTableCell.cs
- FilteredDataSetHelper.cs
- HttpHandlersSection.cs
- DSASignatureDeformatter.cs
- CodeDOMUtility.cs
- CryptoConfig.cs
- _NegoStream.cs
- Run.cs
- EndPoint.cs
- RadioButtonPopupAdapter.cs
- XmlAttributes.cs
- EntryWrittenEventArgs.cs
- _NestedSingleAsyncResult.cs
- DependencyObject.cs
- cryptoapiTransform.cs
- SecurityContext.cs
- SamlAdvice.cs
- RoutedPropertyChangedEventArgs.cs
- DataMemberAttribute.cs
- ReadOnlyNameValueCollection.cs
- MemoryMappedFile.cs
- FlowDocumentPageViewerAutomationPeer.cs
- Comparer.cs
- TextTreeRootTextBlock.cs
- KeyNotFoundException.cs
- Cursor.cs
- ListItemParagraph.cs
- coordinatorscratchpad.cs
- Win32NamedPipes.cs
- FloaterBaseParagraph.cs
- ButtonBaseAutomationPeer.cs
- DocumentReference.cs
- ReadContentAsBinaryHelper.cs
- WindowsSspiNegotiation.cs
- WebPartUtil.cs
- Single.cs
- DataGridViewRowPrePaintEventArgs.cs
- GraphicsContext.cs
- OdbcCommand.cs
- ApplicationGesture.cs
- KeysConverter.cs
- EpmCustomContentSerializer.cs
- ActiveXHelper.cs
- WebEventCodes.cs
- CatalogPartChrome.cs
- ClientConvert.cs
- PerformanceCounterManager.cs
- Size.cs
- SelectionPattern.cs
- ControlBuilderAttribute.cs
- RadioButtonRenderer.cs
- PtsHelper.cs
- FieldBuilder.cs
- LogEntryHeaderSerializer.cs
- NameTable.cs
- TableLayoutStyle.cs
- SqlConnectionPoolGroupProviderInfo.cs
- XPathAncestorIterator.cs
- AutomationPatternInfo.cs
- DataRecord.cs
- SafeLibraryHandle.cs
- DesignerSerializationOptionsAttribute.cs
- XmlCountingReader.cs
- QfeChecker.cs
- SpeechSynthesizer.cs
- PageWrapper.cs
- SiteMap.cs
- IOException.cs
- X509SecurityToken.cs
- TextSegment.cs
- HtmlInputRadioButton.cs
- SqlFlattener.cs
- Transform3D.cs
- ZoneButton.cs