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
- HttpListenerRequest.cs
- XPathSingletonIterator.cs
- IsolatedStorageFileStream.cs
- SqlFactory.cs
- HuffModule.cs
- MarkupExtensionSerializer.cs
- HostingEnvironmentWrapper.cs
- QilLoop.cs
- Package.cs
- AsyncStreamReader.cs
- Pkcs7Recipient.cs
- Compiler.cs
- CodeDirectiveCollection.cs
- AttributeProviderAttribute.cs
- BoundField.cs
- JsonSerializer.cs
- ImageMap.cs
- Invariant.cs
- odbcmetadatacolumnnames.cs
- WSHttpBindingBase.cs
- ProcessHost.cs
- StreamResourceInfo.cs
- ExpandCollapseProviderWrapper.cs
- SelectionWordBreaker.cs
- OciHandle.cs
- FormsAuthenticationUser.cs
- PermissionSet.cs
- XmlBaseWriter.cs
- TreeViewImageKeyConverter.cs
- SortFieldComparer.cs
- SaveLedgerEntryRequest.cs
- DynamicILGenerator.cs
- GraphicsPath.cs
- APCustomTypeDescriptor.cs
- AuthenticationModulesSection.cs
- _OverlappedAsyncResult.cs
- QilPatternVisitor.cs
- XXXOnTypeBuilderInstantiation.cs
- Stroke2.cs
- MultiBinding.cs
- SafeHandles.cs
- PropertyTabChangedEvent.cs
- SingleTagSectionHandler.cs
- PenCursorManager.cs
- SqlXml.cs
- MouseCaptureWithinProperty.cs
- FigureParagraph.cs
- DataSourceCacheDurationConverter.cs
- ColorConvertedBitmapExtension.cs
- CompositeScriptReference.cs
- ListenerPerfCounters.cs
- DesignerCategoryAttribute.cs
- EntityDataSourceMemberPath.cs
- Win32KeyboardDevice.cs
- QueryResults.cs
- EntityViewContainer.cs
- MatrixValueSerializer.cs
- MLangCodePageEncoding.cs
- PointConverter.cs
- OleServicesContext.cs
- HwndSourceKeyboardInputSite.cs
- HttpProfileGroupBase.cs
- VisualBrush.cs
- DeflateEmulationStream.cs
- SqlDataReaderSmi.cs
- TokenDescriptor.cs
- MenuEventArgs.cs
- ReadOnlyDictionary.cs
- serverconfig.cs
- ClientSideQueueItem.cs
- SafeLocalAllocation.cs
- ConstraintConverter.cs
- StylusPointProperty.cs
- WorkflowFormatterBehavior.cs
- ComplexBindingPropertiesAttribute.cs
- WrapperEqualityComparer.cs
- SignedXml.cs
- FixedTextPointer.cs
- ControlOperationBehavior.cs
- Parallel.cs
- NavigationProgressEventArgs.cs
- StrongNamePublicKeyBlob.cs
- SplineKeyFrames.cs
- DbConnectionFactory.cs
- HtmlInputControl.cs
- Decimal.cs
- MemoryRecordBuffer.cs
- ContentElement.cs
- SchemaEntity.cs
- EditCommandColumn.cs
- PassportAuthenticationEventArgs.cs
- DebugView.cs
- TrustLevel.cs
- WebPartsPersonalization.cs
- webclient.cs
- CustomMenuItemCollection.cs
- ThreadAttributes.cs
- OdbcDataAdapter.cs
- HttpCookie.cs
- ConfigurationElementProperty.cs