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
- SyndicationDeserializer.cs
- OletxResourceManager.cs
- XsltException.cs
- FragmentQuery.cs
- SoapServerMethod.cs
- Math.cs
- SqlAliaser.cs
- ProxyGenerationError.cs
- RawAppCommandInputReport.cs
- Lasso.cs
- TemporaryBitmapFile.cs
- StylusPlugin.cs
- TraceUtility.cs
- LogEntrySerializationException.cs
- AnnotationComponentManager.cs
- ApplyHostConfigurationBehavior.cs
- XsltFunctions.cs
- FileDialog_Vista_Interop.cs
- BulletChrome.cs
- DataGridHeaderBorder.cs
- MessageBox.cs
- MsmqInputSessionChannelListener.cs
- ContainerControl.cs
- FormattedTextSymbols.cs
- ImportedPolicyConversionContext.cs
- ImageKeyConverter.cs
- PointAnimationUsingPath.cs
- UnsafeNativeMethods.cs
- WebServiceEnumData.cs
- HttpWebRequestElement.cs
- AssemblyBuilder.cs
- DynamicField.cs
- DesignerListAdapter.cs
- MergeFailedEvent.cs
- HttpCookieCollection.cs
- WebService.cs
- odbcmetadatafactory.cs
- RadioButton.cs
- RegistryExceptionHelper.cs
- oledbmetadatacollectionnames.cs
- PrincipalPermissionMode.cs
- AccessDataSource.cs
- ServiceHttpModule.cs
- ListItem.cs
- InputBinding.cs
- MsmqInputMessagePool.cs
- JsonReaderWriterFactory.cs
- xamlnodes.cs
- WebPartConnectionsCancelVerb.cs
- ColumnWidthChangedEvent.cs
- WindowVisualStateTracker.cs
- PageDeviceFont.cs
- XmlSchemaParticle.cs
- BooleanAnimationUsingKeyFrames.cs
- MaskedTextBoxDesigner.cs
- ViewSimplifier.cs
- ByteRangeDownloader.cs
- DataGridCaption.cs
- ExpressionEditorAttribute.cs
- NativeMethodsOther.cs
- oledbmetadatacollectionnames.cs
- BinaryExpressionHelper.cs
- EmptyCollection.cs
- XhtmlBasicPageAdapter.cs
- SqlUserDefinedAggregateAttribute.cs
- ListBoxDesigner.cs
- DefaultProxySection.cs
- PropertyIDSet.cs
- AsyncWaitHandle.cs
- Line.cs
- ClientSettingsProvider.cs
- TaskResultSetter.cs
- XPSSignatureDefinition.cs
- ImplicitInputBrush.cs
- TextEndOfLine.cs
- EntityDesignPluralizationHandler.cs
- COM2PropertyBuilderUITypeEditor.cs
- SqlNodeTypeOperators.cs
- LinearGradientBrush.cs
- SerializationIncompleteException.cs
- ComponentEvent.cs
- _NTAuthentication.cs
- NullRuntimeConfig.cs
- CoreSwitches.cs
- webproxy.cs
- XmlSchemaCollection.cs
- MultiAsyncResult.cs
- BulletedListEventArgs.cs
- LineGeometry.cs
- TypographyProperties.cs
- SQLBytesStorage.cs
- SoapExtensionTypeElementCollection.cs
- UpdateExpressionVisitor.cs
- TrackBar.cs
- FlowNode.cs
- HttpModuleCollection.cs
- CookieParameter.cs
- NameSpaceExtractor.cs
- PropertyDescriptorCollection.cs
- TemplateKey.cs