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
- X509SubjectKeyIdentifierClause.cs
- ConfigurationPropertyAttribute.cs
- LambdaCompiler.Statements.cs
- TransformCryptoHandle.cs
- InkSerializer.cs
- BeginEvent.cs
- CustomDictionarySources.cs
- BinaryKeyIdentifierClause.cs
- SQLMoneyStorage.cs
- CodeSnippetExpression.cs
- ToolStripItemImageRenderEventArgs.cs
- XmlBufferReader.cs
- DBConnectionString.cs
- CalendarData.cs
- Events.cs
- CreateRefExpr.cs
- OneOfTypeConst.cs
- EmbeddedMailObject.cs
- SoapTypeAttribute.cs
- DataTableExtensions.cs
- AssemblyBuilder.cs
- SiteMapNode.cs
- ReachFixedPageSerializerAsync.cs
- RoutingChannelExtension.cs
- HttpRawResponse.cs
- ToolboxComponentsCreatedEventArgs.cs
- CheckBoxAutomationPeer.cs
- ServiceModelConfigurationSectionCollection.cs
- ListViewUpdatedEventArgs.cs
- DataGridParentRows.cs
- TextServicesManager.cs
- TableLayoutSettingsTypeConverter.cs
- InputManager.cs
- BaseDataListComponentEditor.cs
- DispatcherEventArgs.cs
- FastPropertyAccessor.cs
- ParserExtension.cs
- ConfigurationSectionGroupCollection.cs
- FocusTracker.cs
- AssemblyEvidenceFactory.cs
- XPathDocumentIterator.cs
- TreeViewHitTestInfo.cs
- ImageClickEventArgs.cs
- ObjRef.cs
- CqlQuery.cs
- mongolianshape.cs
- WorkflowStateRollbackService.cs
- securitycriticaldataClass.cs
- CookieProtection.cs
- GZipDecoder.cs
- HostingEnvironmentWrapper.cs
- EncoderNLS.cs
- ManagementException.cs
- DecoratedNameAttribute.cs
- NavigationProgressEventArgs.cs
- XmlNamespaceManager.cs
- QueryOperatorEnumerator.cs
- MsdtcWrapper.cs
- OdbcParameterCollection.cs
- CodeNamespaceCollection.cs
- FormattedTextSymbols.cs
- Unit.cs
- DataSourceHelper.cs
- StructuralCache.cs
- DataQuery.cs
- MaskedTextBox.cs
- AppSecurityManager.cs
- HttpListener.cs
- UpdatePanel.cs
- HttpAsyncResult.cs
- SynchronizedPool.cs
- TemplateBindingExpressionConverter.cs
- GeometryCollection.cs
- MetadataSource.cs
- PathSegmentCollection.cs
- DataMemberAttribute.cs
- DesignerHierarchicalDataSourceView.cs
- WindowsSlider.cs
- DropTarget.cs
- ErrorEventArgs.cs
- SetterBaseCollection.cs
- CompModSwitches.cs
- PartialList.cs
- Serializer.cs
- Thickness.cs
- TemplateBuilder.cs
- ToolZone.cs
- RepeatBehavior.cs
- VariableDesigner.xaml.cs
- Accessible.cs
- Application.cs
- DataGridViewColumnTypePicker.cs
- XmlHelper.cs
- KeyEventArgs.cs
- RegexMatchCollection.cs
- EncryptedKey.cs
- SqlCacheDependency.cs
- ImageCreator.cs
- ZipIORawDataFileBlock.cs
- SocketAddress.cs