Code:
/ DotNET / DotNET / 8.0 / untmp / Orcas / RTM / 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. // Copyright (c) Microsoft Corporation. All rights reserved.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
- FormViewModeEventArgs.cs
- RoleGroup.cs
- COM2PictureConverter.cs
- WindowVisualStateTracker.cs
- TabControl.cs
- InstanceBehavior.cs
- EdmConstants.cs
- ComNativeDescriptor.cs
- MailAddressCollection.cs
- DtcInterfaces.cs
- WebBrowser.cs
- BindStream.cs
- XmlMemberMapping.cs
- ObjectDataSourceMethodEventArgs.cs
- GlobalizationAssembly.cs
- HttpCachePolicy.cs
- Sql8ExpressionRewriter.cs
- DecoderExceptionFallback.cs
- XmlIlTypeHelper.cs
- SpellerError.cs
- PageClientProxyGenerator.cs
- Claim.cs
- ProjectionPlan.cs
- EventListener.cs
- BulletChrome.cs
- HealthMonitoringSectionHelper.cs
- ResolvedKeyFrameEntry.cs
- QuarticEase.cs
- CommandLibraryHelper.cs
- ByteAnimationUsingKeyFrames.cs
- WebEventTraceProvider.cs
- BulletedList.cs
- PropertyEmitter.cs
- XmlElementList.cs
- HandlerBase.cs
- RankException.cs
- ISFTagAndGuidCache.cs
- EmptyWorkItem.cs
- CodeStatementCollection.cs
- LambdaValue.cs
- hebrewshape.cs
- LogicalExpressionTypeConverter.cs
- TextTreePropertyUndoUnit.cs
- TypeListConverter.cs
- GradientSpreadMethodValidation.cs
- ContextMarshalException.cs
- Container.cs
- WhereQueryOperator.cs
- XPathCompileException.cs
- DebugHandleTracker.cs
- SystemBrushes.cs
- ToolStripSeparator.cs
- _DigestClient.cs
- GridItem.cs
- CmsUtils.cs
- SqlDataSourceCache.cs
- TimeSpanFormat.cs
- InternalBufferOverflowException.cs
- AdornerLayer.cs
- PathGeometry.cs
- PageContent.cs
- SmiEventSink_DeferedProcessing.cs
- AlternateViewCollection.cs
- AsymmetricKeyExchangeFormatter.cs
- TemplateBindingExtension.cs
- TreeNodeEventArgs.cs
- TimeoutHelper.cs
- ColorConverter.cs
- NativeStructs.cs
- FormsAuthenticationEventArgs.cs
- ApplicationId.cs
- AxHost.cs
- HandledMouseEvent.cs
- TypeConverterHelper.cs
- KeyedByTypeCollection.cs
- CellRelation.cs
- propertytag.cs
- UInt64.cs
- CellParaClient.cs
- Attributes.cs
- WindowsTokenRoleProvider.cs
- RuntimeResourceSet.cs
- SelectedCellsCollection.cs
- MarkedHighlightComponent.cs
- BridgeDataReader.cs
- PeerHelpers.cs
- BufferAllocator.cs
- LessThan.cs
- VersionUtil.cs
- HybridDictionary.cs
- ResourceCollectionInfo.cs
- EditableRegion.cs
- Effect.cs
- SQLSingle.cs
- Int64Animation.cs
- DocumentReference.cs
- InvokePattern.cs
- RuntimeConfig.cs
- MostlySingletonList.cs
- ProofTokenCryptoHandle.cs