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
- TextInfo.cs
- ProfileInfo.cs
- AggregatePushdown.cs
- Menu.cs
- Converter.cs
- UnsafeNativeMethods.cs
- DocumentViewerHelper.cs
- SoapHeader.cs
- EncryptedXml.cs
- MessageBox.cs
- DataGridViewColumn.cs
- FontDialog.cs
- VoiceSynthesis.cs
- HyperLinkField.cs
- ZoneMembershipCondition.cs
- ListSourceHelper.cs
- MethodRental.cs
- DataTableExtensions.cs
- XmlSerializationGeneratedCode.cs
- AttributeSetAction.cs
- PasswordPropertyTextAttribute.cs
- ConnectionConsumerAttribute.cs
- SynchronizationFilter.cs
- PropVariant.cs
- AutoGeneratedFieldProperties.cs
- SiteMap.cs
- Variable.cs
- TransmissionStrategy.cs
- SessionEndingEventArgs.cs
- MimeMapping.cs
- AutoResetEvent.cs
- DateTimeHelper.cs
- PasswordDeriveBytes.cs
- ArithmeticException.cs
- XmlSerializationWriter.cs
- SystemIcons.cs
- SecureStringHasher.cs
- ControlIdConverter.cs
- NonParentingControl.cs
- GridViewItemAutomationPeer.cs
- Polygon.cs
- HwndSubclass.cs
- SrgsRuleRef.cs
- TimeIntervalCollection.cs
- AdRotator.cs
- DefaultPropertyAttribute.cs
- PingReply.cs
- ActivityCodeDomSerializationManager.cs
- Deserializer.cs
- ContentOperations.cs
- NamedPermissionSet.cs
- CodeRegionDirective.cs
- ChameleonKey.cs
- ItemAutomationPeer.cs
- DrawingAttributesDefaultValueFactory.cs
- SafeArrayTypeMismatchException.cs
- VerticalConnector.xaml.cs
- Label.cs
- SqlConnectionHelper.cs
- ListViewTableCell.cs
- Helpers.cs
- IndicFontClient.cs
- TableLayoutStyle.cs
- SetIndexBinder.cs
- MaskPropertyEditor.cs
- CacheEntry.cs
- FloaterBaseParaClient.cs
- FrameSecurityDescriptor.cs
- ECDsa.cs
- ImageMapEventArgs.cs
- ContentControl.cs
- Operator.cs
- Timeline.cs
- DocumentPageViewAutomationPeer.cs
- CheckBoxPopupAdapter.cs
- CodeTypeReference.cs
- ColorDialog.cs
- CodeAttributeDeclarationCollection.cs
- StyleSheetComponentEditor.cs
- DetailsViewRowCollection.cs
- XmlSchemas.cs
- DataRelationCollection.cs
- CriticalFileToken.cs
- MouseDevice.cs
- DynamicDataManager.cs
- ClientApiGenerator.cs
- ScrollPattern.cs
- ActionMessageFilter.cs
- LinqDataSourceContextEventArgs.cs
- DocumentsTrace.cs
- contentDescriptor.cs
- PolicyException.cs
- SafeEventLogReadHandle.cs
- StringUtil.cs
- X509WindowsSecurityToken.cs
- FindRequestContext.cs
- FormatSettings.cs
- List.cs
- FileDataSourceCache.cs
- Attributes.cs