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
- _LocalDataStore.cs
- ProxySimple.cs
- DisableDpiAwarenessAttribute.cs
- NumberAction.cs
- ActivityCollectionMarkupSerializer.cs
- MobileRedirect.cs
- X509SecurityToken.cs
- WorkItem.cs
- PrintController.cs
- GetLedgerEntryForRecipientRequest.cs
- SerializationException.cs
- DataGridViewAutoSizeColumnModeEventArgs.cs
- HashCodeCombiner.cs
- SubclassTypeValidator.cs
- EndpointInfoCollection.cs
- WindowsHyperlink.cs
- ServicePoint.cs
- SessionPageStatePersister.cs
- XmlSchemaIdentityConstraint.cs
- UniqueID.cs
- Types.cs
- ProfileServiceManager.cs
- xamlnodes.cs
- AttachInfo.cs
- App.cs
- ProfileGroupSettings.cs
- RelationshipEndCollection.cs
- ImageField.cs
- ThreadLocal.cs
- SendingRequestEventArgs.cs
- ExtendedPropertiesHandler.cs
- HeaderCollection.cs
- ExternalException.cs
- XmlConvert.cs
- IISMapPath.cs
- JsonEncodingStreamWrapper.cs
- Error.cs
- TerminatorSinks.cs
- ItemsChangedEventArgs.cs
- HwndSourceParameters.cs
- FormatPage.cs
- RadialGradientBrush.cs
- versioninfo.cs
- SchemaCollectionCompiler.cs
- CompilationUtil.cs
- NodeInfo.cs
- InvalidOleVariantTypeException.cs
- InternalResources.cs
- StorageConditionPropertyMapping.cs
- HtmlControlPersistable.cs
- CodeDirectionExpression.cs
- TextDecorationCollection.cs
- BaseTemplateBuildProvider.cs
- WaitHandle.cs
- EventItfInfo.cs
- GeometryCollection.cs
- StorageComplexTypeMapping.cs
- SamlNameIdentifierClaimResource.cs
- ConfigurationManager.cs
- XmlSerializerNamespaces.cs
- OverlappedContext.cs
- FlowLayoutPanelDesigner.cs
- EmptyImpersonationContext.cs
- BrowserDefinition.cs
- JsonEnumDataContract.cs
- ViewLoader.cs
- ConsoleTraceListener.cs
- PowerModeChangedEventArgs.cs
- AutomationProperty.cs
- RadioButtonStandardAdapter.cs
- CompensatableSequenceActivity.cs
- XmlNamespaceManager.cs
- FrameworkTextComposition.cs
- HttpVersion.cs
- XmlComplianceUtil.cs
- MetafileHeaderWmf.cs
- TemplateLookupAction.cs
- AmbientValueAttribute.cs
- PartitionedStreamMerger.cs
- XmlSignatureManifest.cs
- WorkflowOwnershipException.cs
- FileSystemInfo.cs
- UpdateManifestForBrowserApplication.cs
- PasswordPropertyTextAttribute.cs
- ObjRef.cs
- TableLayoutPanelCellPosition.cs
- Pair.cs
- MultiView.cs
- RangeValueProviderWrapper.cs
- HelpEvent.cs
- ComponentDispatcherThread.cs
- ObjectStateEntryBaseUpdatableDataRecord.cs
- OleCmdHelper.cs
- SBCSCodePageEncoding.cs
- SiteMapNodeItem.cs
- SqlDataSourceView.cs
- OleDbTransaction.cs
- PeerInputChannel.cs
- SrgsElementFactoryCompiler.cs
- TextEmbeddedObject.cs