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
- XmlSerializationWriter.cs
- ContentControl.cs
- WindowsListViewScroll.cs
- StyleBamlTreeBuilder.cs
- SimpleRecyclingCache.cs
- CollaborationHelperFunctions.cs
- ScrollProviderWrapper.cs
- TransactionFlowAttribute.cs
- ConfigXmlWhitespace.cs
- HebrewNumber.cs
- IDQuery.cs
- XmlSchemaSimpleContent.cs
- NegotiateStream.cs
- StylusButton.cs
- HtmlControlPersistable.cs
- DataGridViewAdvancedBorderStyle.cs
- UpDownBase.cs
- ValueConversionAttribute.cs
- BufferModeSettings.cs
- WebServiceHandler.cs
- WebControlsSection.cs
- AddInStore.cs
- PageFunction.cs
- XamlPathDataSerializer.cs
- TouchFrameEventArgs.cs
- TextBreakpoint.cs
- CmsUtils.cs
- StylusSystemGestureEventArgs.cs
- _ConnectionGroup.cs
- PreservationFileWriter.cs
- PageVisual.cs
- messageonlyhwndwrapper.cs
- MonitoringDescriptionAttribute.cs
- CallbackValidatorAttribute.cs
- SimpleFieldTemplateUserControl.cs
- MultipartIdentifier.cs
- DataGridCaption.cs
- DesignTimeParseData.cs
- OrderByExpression.cs
- XmlSchema.cs
- XmlSchemaAttribute.cs
- WizardForm.cs
- PrincipalPermission.cs
- KeyFrames.cs
- CodeLabeledStatement.cs
- Path.cs
- ConstraintConverter.cs
- OrderedEnumerableRowCollection.cs
- CompareValidator.cs
- TransmissionStrategy.cs
- TextRenderingModeValidation.cs
- Substitution.cs
- DataObjectSettingDataEventArgs.cs
- PrivateFontCollection.cs
- HiddenFieldDesigner.cs
- CaseInsensitiveHashCodeProvider.cs
- PageAdapter.cs
- GetIsBrowserClientRequest.cs
- ArgumentOutOfRangeException.cs
- UrlAuthFailedErrorFormatter.cs
- SafeHandles.cs
- FormView.cs
- XmlSchemaComplexContentExtension.cs
- EdmError.cs
- SigningDialog.cs
- BinaryUtilClasses.cs
- FullTextLine.cs
- BufferedMessageData.cs
- WSDualHttpBinding.cs
- SetterTriggerConditionValueConverter.cs
- RepeatBehaviorConverter.cs
- BigInt.cs
- ExtendedPropertyCollection.cs
- ContextMenu.cs
- DecoderFallback.cs
- RenderCapability.cs
- DesignerProperties.cs
- webclient.cs
- TouchPoint.cs
- DecimalFormatter.cs
- DependencyProperty.cs
- SQLInt64.cs
- BindingExpressionBase.cs
- IndentTextWriter.cs
- ApplicationDirectoryMembershipCondition.cs
- IssuedTokenClientBehaviorsElementCollection.cs
- AnnotationResourceCollection.cs
- SystemUnicastIPAddressInformation.cs
- RegexCaptureCollection.cs
- FileUtil.cs
- DataColumnSelectionConverter.cs
- ServiceDescription.cs
- SettingsSection.cs
- GridViewRowEventArgs.cs
- XmlSchemaComplexContentRestriction.cs
- ProcessHostServerConfig.cs
- AttachedPropertyBrowsableWhenAttributePresentAttribute.cs
- AdornedElementPlaceholder.cs
- BufferedGenericXmlSecurityToken.cs
- ExpressionLexer.cs