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
- DragDrop.cs
- TablePattern.cs
- Win32.cs
- ProfileService.cs
- CustomCredentialPolicy.cs
- Bold.cs
- Sql8ExpressionRewriter.cs
- DesignerForm.cs
- AttachedPropertyMethodSelector.cs
- ICspAsymmetricAlgorithm.cs
- RegexCaptureCollection.cs
- HwndProxyElementProvider.cs
- InputScope.cs
- Application.cs
- DockPattern.cs
- DataIdProcessor.cs
- PhysicalFontFamily.cs
- DoubleCollectionConverter.cs
- ParseChildrenAsPropertiesAttribute.cs
- RawStylusInputCustomData.cs
- StorageTypeMapping.cs
- FontFaceLayoutInfo.cs
- EntityDataSourceConfigureObjectContext.cs
- Win32Native.cs
- EmbeddedMailObject.cs
- XsdDataContractExporter.cs
- CapabilitiesSection.cs
- ADMembershipUser.cs
- CoreSwitches.cs
- AlignmentXValidation.cs
- RemotingSurrogateSelector.cs
- CodeExporter.cs
- EntityCommandDefinition.cs
- DataMisalignedException.cs
- DbProviderSpecificTypePropertyAttribute.cs
- IntSecurity.cs
- TraceSection.cs
- FieldNameLookup.cs
- QueryPageSettingsEventArgs.cs
- SortedList.cs
- HexParser.cs
- UserControlCodeDomTreeGenerator.cs
- XmlnsDefinitionAttribute.cs
- InternalConfigEventArgs.cs
- PerformanceCounter.cs
- AnnotationHelper.cs
- HyperlinkAutomationPeer.cs
- CancelEventArgs.cs
- OleDbErrorCollection.cs
- AlphabeticalEnumConverter.cs
- JoinCqlBlock.cs
- ObjectViewFactory.cs
- ChannelDispatcherCollection.cs
- XMLUtil.cs
- ObjectCloneHelper.cs
- WaitHandleCannotBeOpenedException.cs
- Ops.cs
- FileLogRecordHeader.cs
- loginstatus.cs
- XmlNullResolver.cs
- Int32RectValueSerializer.cs
- StringExpressionSet.cs
- DocumentNUp.cs
- ListItemCollection.cs
- SimpleWebHandlerParser.cs
- SBCSCodePageEncoding.cs
- DecoderReplacementFallback.cs
- LoginView.cs
- SerializationHelper.cs
- SpeechRecognizer.cs
- MatrixStack.cs
- MultipleViewProviderWrapper.cs
- XsltOutput.cs
- WinFormsComponentEditor.cs
- BaseDataListActionList.cs
- StrongTypingException.cs
- SyndicationCategory.cs
- _LocalDataStoreMgr.cs
- InternalConfigHost.cs
- HitTestWithPointDrawingContextWalker.cs
- XmlSerializerVersionAttribute.cs
- TextRangeEditLists.cs
- CollectionViewSource.cs
- TextContainer.cs
- DependencyObjectValidator.cs
- TextEmbeddedObject.cs
- HtmlTableCell.cs
- FileStream.cs
- EllipseGeometry.cs
- HttpRawResponse.cs
- EditingMode.cs
- SynchronizationContext.cs
- Random.cs
- ZipIOExtraField.cs
- CriticalExceptions.cs
- CriticalFinalizerObject.cs
- MimeObjectFactory.cs
- FrameworkContentElementAutomationPeer.cs
- SoundPlayerAction.cs
- XmlMtomReader.cs