Code:
/ Dotnetfx_Vista_SP2 / Dotnetfx_Vista_SP2 / 8.0.50727.4016 / DEVDIV / depot / DevDiv / releases / Orcas / QFE / 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
- Operand.cs
- AnnotationStore.cs
- ContextMenu.cs
- StateManagedCollection.cs
- PagePropertiesChangingEventArgs.cs
- PageThemeCodeDomTreeGenerator.cs
- TextElementAutomationPeer.cs
- FieldToken.cs
- ForeignConstraint.cs
- DateTimeUtil.cs
- WebPartActionVerb.cs
- DoubleLinkList.cs
- RequestQueue.cs
- UnescapedXmlDiagnosticData.cs
- OuterGlowBitmapEffect.cs
- WeakRefEnumerator.cs
- KeyProperty.cs
- ProfessionalColors.cs
- DocumentOrderQuery.cs
- DropSource.cs
- SchemaMapping.cs
- SqlMethods.cs
- AutomationPatternInfo.cs
- WindowsRebar.cs
- StylusPointPropertyInfo.cs
- XmlLanguage.cs
- TextDecoration.cs
- CharEntityEncoderFallback.cs
- NativeMethodsCLR.cs
- DispatcherHooks.cs
- MsmqBindingMonitor.cs
- SqlEnums.cs
- XmlCompatibilityReader.cs
- BeginEvent.cs
- InvalidAsynchronousStateException.cs
- ConfigViewGenerator.cs
- PartitionResolver.cs
- HttpWebRequestElement.cs
- Process.cs
- BufferedGraphicsContext.cs
- EditorZone.cs
- RealizedColumnsBlock.cs
- Process.cs
- ColorAnimationBase.cs
- RoleManagerEventArgs.cs
- AbandonedMutexException.cs
- XmlCharCheckingWriter.cs
- ListItemsPage.cs
- TextSelectionHighlightLayer.cs
- RelatedImageListAttribute.cs
- Propagator.ExtentPlaceholderCreator.cs
- BaseProcessProtocolHandler.cs
- BitmapEffectGroup.cs
- NetworkCredential.cs
- VirtualDirectoryMappingCollection.cs
- util.cs
- XsltSettings.cs
- DotExpr.cs
- MenuRendererClassic.cs
- NotificationContext.cs
- CodeThrowExceptionStatement.cs
- DeviceSpecific.cs
- SelfIssuedAuthAsymmetricKey.cs
- HandlerBase.cs
- HttpConfigurationContext.cs
- QueryContinueDragEventArgs.cs
- TrackingStringDictionary.cs
- GradientSpreadMethodValidation.cs
- DbCommandTree.cs
- QueuePathDialog.cs
- BitmapDownload.cs
- SqlDelegatedTransaction.cs
- XmlSchemaAnyAttribute.cs
- OleServicesContext.cs
- BoundingRectTracker.cs
- PrintingPermissionAttribute.cs
- HttpCookie.cs
- ResourceDescriptionAttribute.cs
- ToolStripContainer.cs
- webclient.cs
- LinearKeyFrames.cs
- FontDialog.cs
- GraphicsContainer.cs
- DataRow.cs
- WindowVisualStateTracker.cs
- AutoCompleteStringCollection.cs
- _SSPISessionCache.cs
- shaperfactory.cs
- ConfigurationSectionGroup.cs
- AsyncCompletedEventArgs.cs
- AddInProcess.cs
- GridViewHeaderRowPresenterAutomationPeer.cs
- AdapterUtil.cs
- DocumentXPathNavigator.cs
- VirtualPathUtility.cs
- EntityDesignerDataSourceView.cs
- DataStreams.cs
- FlowDocumentScrollViewer.cs
- MsmqIntegrationChannelListener.cs
- GeneralTransform2DTo3DTo2D.cs