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
- CrossContextChannel.cs
- COM2Properties.cs
- XamlReaderHelper.cs
- EntityTypeEmitter.cs
- PagerSettings.cs
- SymLanguageType.cs
- Dump.cs
- PasswordBox.cs
- StrongNameMembershipCondition.cs
- ModelFunctionTypeElement.cs
- MulticastIPAddressInformationCollection.cs
- DefaultShape.cs
- StartUpEventArgs.cs
- Publisher.cs
- VectorValueSerializer.cs
- DefaultProxySection.cs
- InputMethod.cs
- CreateBookmarkScope.cs
- ComponentCollection.cs
- EdmType.cs
- ChtmlTextWriter.cs
- ElementHostAutomationPeer.cs
- SQLInt32.cs
- EventMappingSettings.cs
- BinaryWriter.cs
- XmlHierarchicalEnumerable.cs
- MoveSizeWinEventHandler.cs
- assertwrapper.cs
- AuthenticationException.cs
- WindowsAuthenticationModule.cs
- XmlSchemaValidationException.cs
- OrthographicCamera.cs
- CookieParameter.cs
- CodeAttributeDeclarationCollection.cs
- EntityDataSourceDesignerHelper.cs
- TreeViewDesigner.cs
- QueryStringParameter.cs
- DataGridViewCellMouseEventArgs.cs
- TextBoxDesigner.cs
- DataGridRelationshipRow.cs
- ActivationWorker.cs
- NameValueCollection.cs
- OutputScopeManager.cs
- DiscreteKeyFrames.cs
- ApplyTemplatesAction.cs
- MeshGeometry3D.cs
- ManifestResourceInfo.cs
- TransactionProtocolConverter.cs
- SamlSubject.cs
- TypedOperationInfo.cs
- FontNameConverter.cs
- PenThreadWorker.cs
- CatalogZone.cs
- OutOfMemoryException.cs
- UnaryOperationBinder.cs
- PackageFilter.cs
- EventManager.cs
- CryptoConfig.cs
- Font.cs
- HierarchicalDataSourceDesigner.cs
- HttpRequest.cs
- WindowsToolbarAsMenu.cs
- TextSelectionHighlightLayer.cs
- BaseWebProxyFinder.cs
- ClipboardData.cs
- WindowsRichEditRange.cs
- OperandQuery.cs
- GroupQuery.cs
- SessionParameter.cs
- FixedSOMPage.cs
- EntityConnection.cs
- InputBinding.cs
- DataMemberListEditor.cs
- CreatingCookieEventArgs.cs
- FlowDecision.cs
- FileLogRecord.cs
- TemplateKeyConverter.cs
- Misc.cs
- CollectionViewGroupRoot.cs
- CodeGroup.cs
- TraceContextRecord.cs
- IndependentAnimationStorage.cs
- CodeLinePragma.cs
- DbCommandTree.cs
- LayoutEngine.cs
- StatusBarPanel.cs
- ConfigsHelper.cs
- ObjectFullSpanRewriter.cs
- XmlTypeMapping.cs
- CustomDictionarySources.cs
- AggregateNode.cs
- TogglePattern.cs
- Enum.cs
- PinProtectionHelper.cs
- NonSerializedAttribute.cs
- OperandQuery.cs
- MappingItemCollection.cs
- SpStreamWrapper.cs
- AppDomainProtocolHandler.cs
- CompatibleComparer.cs