Code:
/ Dotnetfx_Vista_SP2 / Dotnetfx_Vista_SP2 / 8.0.50727.4016 / DEVDIV / depot / DevDiv / releases / Orcas / QFE / 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
- DictionaryItemsCollection.cs
- Light.cs
- IdentifierService.cs
- TdsParser.cs
- IgnoreFlushAndCloseStream.cs
- XmlSchemaSimpleType.cs
- NotifyInputEventArgs.cs
- MouseButton.cs
- StyleSheet.cs
- DeferrableContentConverter.cs
- PathSegmentCollection.cs
- WindowsPen.cs
- HistoryEventArgs.cs
- MulticastOption.cs
- InheritanceAttribute.cs
- MaskedTextProvider.cs
- OutOfMemoryException.cs
- SoapExtensionImporter.cs
- SmtpAuthenticationManager.cs
- CurrentTimeZone.cs
- DataGridItem.cs
- WSTrustFeb2005.cs
- WebBrowserPermission.cs
- OdbcCommand.cs
- XhtmlTextWriter.cs
- XmlSchemaComplexContent.cs
- Deserializer.cs
- OleDbMetaDataFactory.cs
- Tracking.cs
- TextDecorationCollectionConverter.cs
- EpmCustomContentWriterNodeData.cs
- XmlReaderSettings.cs
- PriorityQueue.cs
- AccessibilityHelperForVista.cs
- ContentPathSegment.cs
- PropertyGridEditorPart.cs
- PathSegment.cs
- Clipboard.cs
- Int32Collection.cs
- DefaultPropertiesToSend.cs
- WeakReadOnlyCollection.cs
- Point4D.cs
- ConfigPathUtility.cs
- ProgressiveCrcCalculatingStream.cs
- Visual.cs
- ClientTarget.cs
- FacetDescription.cs
- GlobalEventManager.cs
- HttpResponse.cs
- SmiContextFactory.cs
- TextEditorSelection.cs
- DefaultSection.cs
- DataRowView.cs
- ExceptionRoutedEventArgs.cs
- SystemSounds.cs
- IdentityValidationException.cs
- TransformDescriptor.cs
- MailAddressCollection.cs
- SecurityRuntime.cs
- LogPolicy.cs
- EntityContainerRelationshipSet.cs
- FontCollection.cs
- SqlDataSourceQuery.cs
- ConfigsHelper.cs
- QueryStatement.cs
- ModelUIElement3D.cs
- SafeLibraryHandle.cs
- XmlAggregates.cs
- ViewgenContext.cs
- ConfigurationSectionGroup.cs
- SqlException.cs
- InvariantComparer.cs
- MergeFailedEvent.cs
- TableLayoutColumnStyleCollection.cs
- securitymgrsite.cs
- ToolStripDropDown.cs
- QilReference.cs
- SessionStateContainer.cs
- BulletDecorator.cs
- CachedFontFamily.cs
- DataGridViewSelectedCellsAccessibleObject.cs
- ProfileSettings.cs
- TypeUsage.cs
- OptionalColumn.cs
- QuaternionAnimationUsingKeyFrames.cs
- ModuleConfigurationInfo.cs
- StandardOleMarshalObject.cs
- ContentElementAutomationPeer.cs
- XPathNodePointer.cs
- CacheMemory.cs
- AutoResetEvent.cs
- FigureHelper.cs
- ManagedFilter.cs
- TextTreeFixupNode.cs
- SharedRuntimeState.cs
- MemberRelationshipService.cs
- RijndaelManaged.cs
- FacetChecker.cs
- PlatformCulture.cs
- BamlResourceSerializer.cs