Code:
/ Dotnetfx_Vista_SP2 / Dotnetfx_Vista_SP2 / 8.0.50727.4016 / DEVDIV / depot / DevDiv / releases / Orcas / QFE / ndp / fx / src / xsp / System / Web / Extensions / ui / webcontrols / ListViewInsertedEventArgs.cs / 1 / ListViewInsertedEventArgs.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- using System; using System.Collections.Specialized; using System.ComponentModel; namespace System.Web.UI.WebControls { [AspNetHostingPermission(System.Security.Permissions.SecurityAction.LinkDemand, Level=AspNetHostingPermissionLevel.Minimal)] [AspNetHostingPermission(System.Security.Permissions.SecurityAction.InheritanceDemand, Level=AspNetHostingPermissionLevel.Minimal)] public class ListViewInsertedEventArgs : EventArgs { private int _affectedRows; private Exception _exception; private bool _exceptionHandled; private IOrderedDictionary _values; private bool _keepInInsertMode; public ListViewInsertedEventArgs(int affectedRows, Exception exception) { _affectedRows = affectedRows; _exceptionHandled = false; _exception = exception; _keepInInsertMode = false; } ////// public int AffectedRows { get { return _affectedRows; } } ///Gets the source of the command. This property is read-only. ////// public Exception Exception { get { return _exception; } } ///Gets the exception (if any) that occurred during the operation. This property is read-only. ////// public bool ExceptionHandled { get { return _exceptionHandled; } set { _exceptionHandled = value; } } ///Gets a flag telling whether the exception was handled. ////// public bool KeepInInsertMode { get { return _keepInInsertMode; } set { _keepInInsertMode = value; } } ///Gets or sets whether the control should be rebound. ////// public IOrderedDictionary Values { get { if (_values == null) { _values = new OrderedDictionary(); } return _values; } } internal void SetValues(IOrderedDictionary values) { _values = values; } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. //------------------------------------------------------------------------------ //Gets a OrderedDictionary to populate with updated row values. This property is read-only. ///// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- using System; using System.Collections.Specialized; using System.ComponentModel; namespace System.Web.UI.WebControls { [AspNetHostingPermission(System.Security.Permissions.SecurityAction.LinkDemand, Level=AspNetHostingPermissionLevel.Minimal)] [AspNetHostingPermission(System.Security.Permissions.SecurityAction.InheritanceDemand, Level=AspNetHostingPermissionLevel.Minimal)] public class ListViewInsertedEventArgs : EventArgs { private int _affectedRows; private Exception _exception; private bool _exceptionHandled; private IOrderedDictionary _values; private bool _keepInInsertMode; public ListViewInsertedEventArgs(int affectedRows, Exception exception) { _affectedRows = affectedRows; _exceptionHandled = false; _exception = exception; _keepInInsertMode = false; } ////// public int AffectedRows { get { return _affectedRows; } } ///Gets the source of the command. This property is read-only. ////// public Exception Exception { get { return _exception; } } ///Gets the exception (if any) that occurred during the operation. This property is read-only. ////// public bool ExceptionHandled { get { return _exceptionHandled; } set { _exceptionHandled = value; } } ///Gets a flag telling whether the exception was handled. ////// public bool KeepInInsertMode { get { return _keepInInsertMode; } set { _keepInInsertMode = value; } } ///Gets or sets whether the control should be rebound. ////// public IOrderedDictionary Values { get { if (_values == null) { _values = new OrderedDictionary(); } return _values; } } internal void SetValues(IOrderedDictionary values) { _values = values; } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007.Gets a OrderedDictionary to populate with updated row values. This property is read-only. ///
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- XmlSchemaImport.cs
- CheckBoxField.cs
- X509Extension.cs
- ReflectionHelper.cs
- ConditionalAttribute.cs
- UxThemeWrapper.cs
- DeviceSpecificChoiceCollection.cs
- PrintPageEvent.cs
- SimpleApplicationHost.cs
- AttachedAnnotation.cs
- XamlWrappingReader.cs
- dsa.cs
- TextTreePropertyUndoUnit.cs
- IgnoreFileBuildProvider.cs
- WebBrowserBase.cs
- StringPropertyBuilder.cs
- ProfileManager.cs
- ProgressBar.cs
- XmlEntityReference.cs
- TransactionsSectionGroup.cs
- ClosureBinding.cs
- SoapInteropTypes.cs
- ProxyElement.cs
- ArcSegment.cs
- ListSortDescriptionCollection.cs
- LabelAutomationPeer.cs
- SchemaImporter.cs
- ReadOnlyDataSource.cs
- ReflectEventDescriptor.cs
- TCEAdapterGenerator.cs
- EntityContainerRelationshipSet.cs
- ColumnWidthChangedEvent.cs
- MappingSource.cs
- UserControl.cs
- LocalizabilityAttribute.cs
- ValidationSummary.cs
- XsltArgumentList.cs
- AxHost.cs
- SmtpMail.cs
- ControlType.cs
- IndexerNameAttribute.cs
- XmlNodeReader.cs
- VirtualPathProvider.cs
- HtmlTableRowCollection.cs
- MetaTable.cs
- DoubleKeyFrameCollection.cs
- BooleanConverter.cs
- UshortList2.cs
- TypeToStringValueConverter.cs
- _TimerThread.cs
- CodeConstructor.cs
- Keywords.cs
- DataGridSortCommandEventArgs.cs
- XmlCharacterData.cs
- MediaScriptCommandRoutedEventArgs.cs
- AsymmetricAlgorithm.cs
- GeneralTransform.cs
- FlowLayoutPanel.cs
- DependencyPropertyKind.cs
- DependencyProperty.cs
- DataSourceGroupCollection.cs
- GenericRootAutomationPeer.cs
- TextSelectionHighlightLayer.cs
- EventLogEntry.cs
- AttributeEmitter.cs
- QilValidationVisitor.cs
- XmlTextReaderImpl.cs
- SamlAssertion.cs
- TableLayout.cs
- StructuredProperty.cs
- Token.cs
- Inline.cs
- TemplateManager.cs
- DataMemberFieldConverter.cs
- RC2.cs
- XmlAttributeProperties.cs
- CatalogPartDesigner.cs
- ToolboxCategory.cs
- DiscoveryMessageSequenceGenerator.cs
- InertiaTranslationBehavior.cs
- PreservationFileReader.cs
- TreeViewBindingsEditor.cs
- XmlSchemaAnyAttribute.cs
- Int32RectConverter.cs
- SessionViewState.cs
- ContractDescription.cs
- MenuTracker.cs
- ForAllOperator.cs
- PathGeometry.cs
- SingleAnimationUsingKeyFrames.cs
- ObjectDataProvider.cs
- FixedSchema.cs
- FormViewDeleteEventArgs.cs
- DisplayNameAttribute.cs
- ProfileSection.cs
- _ChunkParse.cs
- RequestUriProcessor.cs
- SiteMembershipCondition.cs
- ZipIOModeEnforcingStream.cs
- SQLSingle.cs