Code:
/ Dotnetfx_Win7_3.5.1 / Dotnetfx_Win7_3.5.1 / 3.5.1 / DEVDIV / depot / DevDiv / releases / Orcas / NetFXw7 / ndp / fx / src / DataEntity / System / Data / EntityCommandExecutionException.cs / 1 / EntityCommandExecutionException.cs
//---------------------------------------------------------------------- //// Copyright (c) Microsoft Corporation. All rights reserved. // // // @owner [....] //--------------------------------------------------------------------- namespace System.Data { using System; using System.IO; using System.Data.Common; using System.Globalization; using System.Runtime.Serialization; using System.Security.Permissions; ////// Represents a failure while trying to prepare or execute a CommandExecution /// /// This exception is intended to provide a common exception that people can catch to /// hold provider exceptions (SqlException, OracleException) when using the EntityCommand /// to execute statements. /// [Serializable] public sealed class EntityCommandExecutionException : EntityException { #region Constructors ////// initializes a new instance of EntityCommandExecutionException, no message, no inner exception. Probably shouldn't /// exist, but it makes FxCop happy. /// public EntityCommandExecutionException() : base() { HResult = HResults.CommandExecution; } ////// initializes a new instance of EntityCommandExecutionException, with message, no inner exception. Probably shouldn't /// exist, but it makes FxCop happy. /// public EntityCommandExecutionException(string message) : base(message) { HResult = HResults.CommandExecution; } ////// initializes a new instance of EntityCommandExecutionException with message and an inner exception instance /// /// /// public EntityCommandExecutionException(string message, Exception innerException) : base(message, innerException) { HResult = HResults.CommandExecution; } ////// initializes a new instance EntityCommandExecutionException with a given SerializationInfo and StreamingContext /// /// /// private EntityCommandExecutionException(SerializationInfo serializationInfo, StreamingContext streamingContext) : base(serializationInfo, streamingContext) { HResult = HResults.CommandExecution; } #endregion } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. //---------------------------------------------------------------------- //// Copyright (c) Microsoft Corporation. All rights reserved. // // // @owner [....] //--------------------------------------------------------------------- namespace System.Data { using System; using System.IO; using System.Data.Common; using System.Globalization; using System.Runtime.Serialization; using System.Security.Permissions; ////// Represents a failure while trying to prepare or execute a CommandExecution /// /// This exception is intended to provide a common exception that people can catch to /// hold provider exceptions (SqlException, OracleException) when using the EntityCommand /// to execute statements. /// [Serializable] public sealed class EntityCommandExecutionException : EntityException { #region Constructors ////// initializes a new instance of EntityCommandExecutionException, no message, no inner exception. Probably shouldn't /// exist, but it makes FxCop happy. /// public EntityCommandExecutionException() : base() { HResult = HResults.CommandExecution; } ////// initializes a new instance of EntityCommandExecutionException, with message, no inner exception. Probably shouldn't /// exist, but it makes FxCop happy. /// public EntityCommandExecutionException(string message) : base(message) { HResult = HResults.CommandExecution; } ////// initializes a new instance of EntityCommandExecutionException with message and an inner exception instance /// /// /// public EntityCommandExecutionException(string message, Exception innerException) : base(message, innerException) { HResult = HResults.CommandExecution; } ////// initializes a new instance EntityCommandExecutionException with a given SerializationInfo and StreamingContext /// /// /// private EntityCommandExecutionException(SerializationInfo serializationInfo, StreamingContext streamingContext) : base(serializationInfo, streamingContext) { HResult = HResults.CommandExecution; } #endregion } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- StorageConditionPropertyMapping.cs
- DataViewListener.cs
- ToolStripItemRenderEventArgs.cs
- TextDecorationLocationValidation.cs
- PropertyToken.cs
- WorkflowTransactionService.cs
- DoubleCollection.cs
- FullTrustAssembly.cs
- ProcessModelInfo.cs
- SharedUtils.cs
- XmlWriter.cs
- QuaternionRotation3D.cs
- ProfileGroupSettingsCollection.cs
- HttpListenerElement.cs
- XmlSchemaInclude.cs
- CalculatedColumn.cs
- XPathAncestorQuery.cs
- MobileControlDesigner.cs
- CacheRequest.cs
- ListDictionaryInternal.cs
- CommunicationObjectAbortedException.cs
- GrammarBuilderDictation.cs
- DataDocumentXPathNavigator.cs
- OptimalTextSource.cs
- Help.cs
- coordinator.cs
- TextCompositionManager.cs
- WindowsFormsSectionHandler.cs
- CodeCatchClause.cs
- DoubleMinMaxAggregationOperator.cs
- ColumnPropertiesGroup.cs
- DesignerMetadata.cs
- LongValidatorAttribute.cs
- DataSourceHelper.cs
- SqlDataSource.cs
- RegionData.cs
- DynamicPropertyHolder.cs
- Section.cs
- PolyLineSegment.cs
- XmlDataSourceNodeDescriptor.cs
- HealthMonitoringSection.cs
- RenderDataDrawingContext.cs
- DrawingBrush.cs
- UrlMappingCollection.cs
- ApplicationManager.cs
- basevalidator.cs
- ProviderConnectionPointCollection.cs
- DBCSCodePageEncoding.cs
- IItemProperties.cs
- DbParameterCollection.cs
- WebPartUtil.cs
- PrivilegedConfigurationManager.cs
- QueryOperationResponseOfT.cs
- StringCollection.cs
- DispatchWrapper.cs
- DispatcherOperation.cs
- StructuredType.cs
- ValidateNames.cs
- InitializationEventAttribute.cs
- BaseInfoTable.cs
- CodeRemoveEventStatement.cs
- ElementNotEnabledException.cs
- SafeSecurityHelper.cs
- WebPartChrome.cs
- DisplayMemberTemplateSelector.cs
- Psha1DerivedKeyGenerator.cs
- Floater.cs
- SymmetricAlgorithm.cs
- XXXOnTypeBuilderInstantiation.cs
- ChangeToolStripParentVerb.cs
- HtmlWindowCollection.cs
- ReadOnlyAttribute.cs
- WindowsFormsHost.cs
- XmlSchemaSubstitutionGroup.cs
- GenericTextProperties.cs
- XmlDataCollection.cs
- ScalarRestriction.cs
- UserPersonalizationStateInfo.cs
- Parser.cs
- StandardToolWindows.cs
- KoreanLunisolarCalendar.cs
- SAPICategories.cs
- CellConstantDomain.cs
- PageStatePersister.cs
- CompilerGeneratedAttribute.cs
- SHA384Managed.cs
- EastAsianLunisolarCalendar.cs
- ThreadExceptionDialog.cs
- TextParagraphCache.cs
- RsaKeyIdentifierClause.cs
- AssemblyBuilder.cs
- OptimizedTemplateContent.cs
- EditorZoneAutoFormat.cs
- IChannel.cs
- BindValidator.cs
- TransformedBitmap.cs
- ReferentialConstraint.cs
- ConnectionStringEditor.cs
- SystemTcpConnection.cs
- SqlTypeSystemProvider.cs