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
- ComponentChangingEvent.cs
- ServiceOperationInvoker.cs
- SoapFault.cs
- ClusterUtils.cs
- ScrollBarAutomationPeer.cs
- TimeSpanStorage.cs
- SqlDataReader.cs
- SystemGatewayIPAddressInformation.cs
- XmlRawWriterWrapper.cs
- WebServiceEnumData.cs
- BinaryFormatterWriter.cs
- AssociationTypeEmitter.cs
- GlobalProxySelection.cs
- StorageComplexPropertyMapping.cs
- FrameworkElement.cs
- ModulesEntry.cs
- ObjectToken.cs
- CompiledQuery.cs
- SocketStream.cs
- ILGenerator.cs
- PropertyMapper.cs
- SamlAuthenticationStatement.cs
- BuildResultCache.cs
- GroupDescription.cs
- VisemeEventArgs.cs
- returneventsaver.cs
- SQLDateTime.cs
- XmlNode.cs
- SchemaNamespaceManager.cs
- ServiceModelActivationSectionGroup.cs
- MemberDescriptor.cs
- EntityProviderFactory.cs
- ScrollViewerAutomationPeer.cs
- CellParagraph.cs
- CaseInsensitiveComparer.cs
- dbenumerator.cs
- NumericUpDownAccelerationCollection.cs
- SqlWorkflowPersistenceService.cs
- HostingEnvironmentSection.cs
- FixUpCollection.cs
- ManagedCodeMarkers.cs
- PartialCachingAttribute.cs
- StatementContext.cs
- ManagedFilter.cs
- TableDesigner.cs
- FontFamilyConverter.cs
- HiddenField.cs
- ClientTargetSection.cs
- CustomMenuItemCollection.cs
- WebPartDeleteVerb.cs
- SchemaDeclBase.cs
- OrderingQueryOperator.cs
- XmlDataSourceView.cs
- x509utils.cs
- DrawingAttributes.cs
- Pens.cs
- Vector.cs
- StylusPointPropertyUnit.cs
- ObjectQuery_EntitySqlExtensions.cs
- AccessibilityHelperForVista.cs
- SetStoryboardSpeedRatio.cs
- SplayTreeNode.cs
- IPipelineRuntime.cs
- PropertyNames.cs
- ControlTemplate.cs
- DataGridViewCellErrorTextNeededEventArgs.cs
- HeaderUtility.cs
- CultureSpecificCharacterBufferRange.cs
- iisPickupDirectory.cs
- QuaternionIndependentAnimationStorage.cs
- ComPlusTypeLoader.cs
- CodeEventReferenceExpression.cs
- MatrixTransform3D.cs
- ProcessModuleCollection.cs
- LogSwitch.cs
- SqlGatherConsumedAliases.cs
- SimpleFileLog.cs
- followingsibling.cs
- ViewStateException.cs
- EdmItemError.cs
- SkewTransform.cs
- Selection.cs
- AddInAttribute.cs
- Triplet.cs
- WebHostScriptMappingsInstallComponent.cs
- Guid.cs
- ReadOnlyCollection.cs
- EventsTab.cs
- OleDbDataAdapter.cs
- ToolStripItem.cs
- Clipboard.cs
- ResourceProviderFactory.cs
- DBCommand.cs
- QilExpression.cs
- DataTableReaderListener.cs
- PolyLineSegmentFigureLogic.cs
- RichTextBoxDesigner.cs
- NavigationHelper.cs
- HwndMouseInputProvider.cs
- FormsAuthenticationModule.cs