Code:
/ Dotnetfx_Win7_3.5.1 / Dotnetfx_Win7_3.5.1 / 3.5.1 / DEVDIV / depot / DevDiv / releases / Orcas / NetFXw7 / 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
- Base64Decoder.cs
- PlanCompilerUtil.cs
- BinaryUtilClasses.cs
- FontStretch.cs
- WindowsStatic.cs
- documentation.cs
- MenuItemBindingCollection.cs
- PropertyMapper.cs
- RTLAwareMessageBox.cs
- SimpleHandlerBuildProvider.cs
- HeaderUtility.cs
- TranslateTransform.cs
- TransactionChannelFactory.cs
- SqlInternalConnection.cs
- MimeAnyImporter.cs
- ValidationUtility.cs
- KnownTypes.cs
- DeviceSpecificChoiceCollection.cs
- CompiledWorkflowDefinitionContext.cs
- RoleBoolean.cs
- SignatureDescription.cs
- ToolStripOverflowButton.cs
- MatrixCamera.cs
- HttpHostedTransportConfiguration.cs
- EnumMemberAttribute.cs
- MultipartContentParser.cs
- OdbcInfoMessageEvent.cs
- iisPickupDirectory.cs
- SqlClientWrapperSmiStream.cs
- EqualityComparer.cs
- ForEachAction.cs
- CodeDefaultValueExpression.cs
- EnvelopedPkcs7.cs
- ClientProtocol.cs
- WebEvents.cs
- Int32EqualityComparer.cs
- SafeEventHandle.cs
- ObjectDataSourceFilteringEventArgs.cs
- SwitchCase.cs
- ToolStripRendererSwitcher.cs
- CollectionChangedEventManager.cs
- ExpandedWrapper.cs
- XmlSignificantWhitespace.cs
- StaticSiteMapProvider.cs
- _LocalDataStoreMgr.cs
- ExtensionQuery.cs
- DataPagerFieldItem.cs
- DataBindingList.cs
- SystemWebSectionGroup.cs
- HostProtectionPermission.cs
- DataRowView.cs
- ValidationError.cs
- StructuredTypeInfo.cs
- PersonalizationProviderCollection.cs
- DocumentPageTextView.cs
- StorageSetMapping.cs
- WorkflowItemPresenter.cs
- UIElementHelper.cs
- Italic.cs
- DataGridViewRowConverter.cs
- BrowserDefinitionCollection.cs
- PathGradientBrush.cs
- InplaceBitmapMetadataWriter.cs
- TextTreeFixupNode.cs
- ViewValidator.cs
- ImageAnimator.cs
- InnerItemCollectionView.cs
- StrokeSerializer.cs
- PrefixQName.cs
- BlurBitmapEffect.cs
- DrawingAttributesDefaultValueFactory.cs
- AudienceUriMode.cs
- WSFederationHttpSecurity.cs
- ConfigurationManagerInternal.cs
- DesignerWidgets.cs
- MimeBasePart.cs
- MenuCommand.cs
- DataChangedEventManager.cs
- Metadata.cs
- TemplateEditingService.cs
- Int32RectConverter.cs
- EdgeProfileValidation.cs
- InvalidDataException.cs
- TimeoutValidationAttribute.cs
- PrimitiveDataContract.cs
- DbInsertCommandTree.cs
- _ChunkParse.cs
- TimerElapsedEvenArgs.cs
- CommandID.cs
- StreamingContext.cs
- StringCollectionEditor.cs
- XmlObjectSerializerReadContextComplex.cs
- CroppedBitmap.cs
- TextRunProperties.cs
- Cloud.cs
- InvalidPipelineStoreException.cs
- TextEditorCopyPaste.cs
- MatrixTransform3D.cs
- CDSCollectionETWBCLProvider.cs
- DetailsViewCommandEventArgs.cs