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
- ArrayExtension.cs
- ChtmlPageAdapter.cs
- IndexerNameAttribute.cs
- NamespaceEmitter.cs
- MetadataArtifactLoaderCompositeResource.cs
- BookmarkResumptionRecord.cs
- NetDataContractSerializer.cs
- LinkedDataMemberFieldEditor.cs
- DotExpr.cs
- ListInitExpression.cs
- PropertyChangedEventManager.cs
- IndexedString.cs
- UnaryNode.cs
- PathHelper.cs
- XamlTypeMapper.cs
- TableLayoutStyleCollection.cs
- AuthenticationSection.cs
- WebBrowserBase.cs
- XmlSerializationGeneratedCode.cs
- ExpressionNode.cs
- _NativeSSPI.cs
- ModuleConfigurationInfo.cs
- SynchronizationLockException.cs
- DataBoundControl.cs
- XPathMultyIterator.cs
- util.cs
- GridViewItemAutomationPeer.cs
- LowerCaseStringConverter.cs
- DataGridColumnHeadersPresenter.cs
- EpmSyndicationContentSerializer.cs
- XmlComplianceUtil.cs
- TypeUtil.cs
- MimeMapping.cs
- XmlArrayItemAttributes.cs
- UnsafeNativeMethods.cs
- MatrixTransform3D.cs
- TypeNameParser.cs
- IndentedWriter.cs
- DataObjectEventArgs.cs
- RsaEndpointIdentity.cs
- ProfilePropertySettings.cs
- ConnectionConsumerAttribute.cs
- TransactionalPackage.cs
- RuleAction.cs
- DbConnectionOptions.cs
- DbInsertCommandTree.cs
- PointF.cs
- KeyGesture.cs
- MenuItem.cs
- DrawingDrawingContext.cs
- TextTreeInsertElementUndoUnit.cs
- Cursors.cs
- TableLayoutSettingsTypeConverter.cs
- SettingsBindableAttribute.cs
- TypeToStringValueConverter.cs
- TextBox.cs
- IHttpResponseInternal.cs
- EventBuilder.cs
- HttpGetClientProtocol.cs
- JsonFormatGeneratorStatics.cs
- DataContractSerializerServiceBehavior.cs
- ValueProviderWrapper.cs
- ValidationErrorCollection.cs
- FocusChangedEventArgs.cs
- UnconditionalPolicy.cs
- ViewCellSlot.cs
- TemplateControlParser.cs
- TraceSource.cs
- RequestCacheValidator.cs
- ISAPIRuntime.cs
- WebReferencesBuildProvider.cs
- RangeContentEnumerator.cs
- TimeManager.cs
- PositiveTimeSpanValidator.cs
- DataGridViewHitTestInfo.cs
- ValueHandle.cs
- BitSet.cs
- DrawingAttributes.cs
- NativeMethods.cs
- DependencyObjectProvider.cs
- RSAPKCS1KeyExchangeFormatter.cs
- Drawing.cs
- MatrixAnimationUsingKeyFrames.cs
- SyndicationDeserializer.cs
- DocumentSequenceHighlightLayer.cs
- DispatchWrapper.cs
- CompilationSection.cs
- PersistenceProviderDirectory.cs
- ObjectSet.cs
- ImageMapEventArgs.cs
- DoubleStorage.cs
- ExpressionEditorAttribute.cs
- ParseChildrenAsPropertiesAttribute.cs
- UIElementAutomationPeer.cs
- SamlConditions.cs
- SystemIPv6InterfaceProperties.cs
- LinqDataSourceUpdateEventArgs.cs
- Screen.cs
- PreservationFileWriter.cs
- QueryOutputWriterV1.cs