Code:
/ Net / Net / 3.5.50727.3053 / DEVDIV / depot / DevDiv / releases / Orcas / SP / 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
- DataGridViewCellValidatingEventArgs.cs
- CacheVirtualItemsEvent.cs
- StaticContext.cs
- TypeResolver.cs
- TimeoutValidationAttribute.cs
- TextCollapsingProperties.cs
- HttpPostedFile.cs
- AnimationException.cs
- UniqueEventHelper.cs
- RestClientProxyHandler.cs
- ValidationErrorInfo.cs
- RegexTypeEditor.cs
- ProvidePropertyAttribute.cs
- TablePattern.cs
- EntityStoreSchemaFilterEntry.cs
- MutexSecurity.cs
- NamespaceInfo.cs
- TextChange.cs
- IList.cs
- M3DUtil.cs
- TransformProviderWrapper.cs
- SymDocumentType.cs
- DateBoldEvent.cs
- DbParameterHelper.cs
- ListControl.cs
- PickBranch.cs
- CodeTypeReferenceCollection.cs
- ServiceHttpModule.cs
- ResourceAssociationSetEnd.cs
- AdapterDictionary.cs
- ZoomPercentageConverter.cs
- EndPoint.cs
- ObjectIDGenerator.cs
- ToolStripProfessionalLowResolutionRenderer.cs
- CultureInfoConverter.cs
- SynchronizingStream.cs
- ColorInterpolationModeValidation.cs
- ToolStripMenuItem.cs
- StatusBar.cs
- XmlSchemaGroup.cs
- RotateTransform.cs
- HostedNamedPipeTransportManager.cs
- PolicyException.cs
- OracleMonthSpan.cs
- MemberMemberBinding.cs
- PointConverter.cs
- Events.cs
- HWStack.cs
- DiscoveryServerProtocol.cs
- TypeConverter.cs
- OperationResponse.cs
- CompareValidator.cs
- WindowsButton.cs
- DbConnectionPoolIdentity.cs
- ZipFileInfoCollection.cs
- UIElementParaClient.cs
- BlobPersonalizationState.cs
- SchemaCollectionCompiler.cs
- Rotation3DKeyFrameCollection.cs
- UdpAnnouncementEndpoint.cs
- SqlConnectionFactory.cs
- ChangeConflicts.cs
- AdCreatedEventArgs.cs
- AttributeQuery.cs
- EncoderNLS.cs
- UInt16Converter.cs
- StylusButtonEventArgs.cs
- ControlBuilder.cs
- DCSafeHandle.cs
- MaskedTextBox.cs
- XmlSchemaSimpleContent.cs
- TreeBuilder.cs
- PeerToPeerException.cs
- PenLineCapValidation.cs
- Matrix3D.cs
- ServiceDescriptions.cs
- VirtualPathProvider.cs
- XmlBufferReader.cs
- StorageTypeMapping.cs
- PrintingPermission.cs
- CopyOnWriteList.cs
- TdsParserStateObject.cs
- CalendarDay.cs
- SignatureConfirmationElement.cs
- EnumerableRowCollectionExtensions.cs
- SigningCredentials.cs
- EventItfInfo.cs
- DoubleAnimationClockResource.cs
- DynamicValueConverter.cs
- XPathQilFactory.cs
- OperandQuery.cs
- ConfigXmlDocument.cs
- SQLDouble.cs
- PagePropertiesChangingEventArgs.cs
- GlyphElement.cs
- PropertyDescriptorCollection.cs
- XPathMultyIterator.cs
- SpeechSeg.cs
- CallbackTimeoutsElement.cs
- SendMailErrorEventArgs.cs