Code:
/ Dotnetfx_Vista_SP2 / Dotnetfx_Vista_SP2 / 8.0.50727.4016 / DEVDIV / depot / DevDiv / releases / Orcas / QFE / ndp / fx / src / DataEntity / System / Data / EntityCommandCompilationException.cs / 1 / EntityCommandCompilationException.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 CommandCompilation /// /// 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 EntityCommandCompilationException : EntityException { #region Constructors ////// initializes a new instance of EntityCommandCompilationException, no message, no inner exception. Probably shouldn't /// exist, but it makes FxCop happy. /// public EntityCommandCompilationException() : base() { HResult = HResults.CommandCompilation; } ////// initializes a new instance of EntityCommandCompilationException, with message, no inner exception. Probably shouldn't /// exist, but it makes FxCop happy. /// public EntityCommandCompilationException(string message) : base(message) { HResult = HResults.CommandCompilation; } ////// initializes a new instance of EntityCommandCompilationException with message and an inner exception instance /// /// /// public EntityCommandCompilationException(string message, Exception innerException) : base(message, innerException) { HResult = HResults.CommandCompilation; } ////// initializes a new instance EntityCommandCompilationException with a given SerializationInfo and StreamingContext /// /// /// private EntityCommandCompilationException(SerializationInfo serializationInfo, StreamingContext streamingContext) : base(serializationInfo, streamingContext) { HResult = HResults.CommandCompilation; } #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 CommandCompilation /// /// 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 EntityCommandCompilationException : EntityException { #region Constructors ////// initializes a new instance of EntityCommandCompilationException, no message, no inner exception. Probably shouldn't /// exist, but it makes FxCop happy. /// public EntityCommandCompilationException() : base() { HResult = HResults.CommandCompilation; } ////// initializes a new instance of EntityCommandCompilationException, with message, no inner exception. Probably shouldn't /// exist, but it makes FxCop happy. /// public EntityCommandCompilationException(string message) : base(message) { HResult = HResults.CommandCompilation; } ////// initializes a new instance of EntityCommandCompilationException with message and an inner exception instance /// /// /// public EntityCommandCompilationException(string message, Exception innerException) : base(message, innerException) { HResult = HResults.CommandCompilation; } ////// initializes a new instance EntityCommandCompilationException with a given SerializationInfo and StreamingContext /// /// /// private EntityCommandCompilationException(SerializationInfo serializationInfo, StreamingContext streamingContext) : base(serializationInfo, streamingContext) { HResult = HResults.CommandCompilation; } #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
- AnnotationHighlightLayer.cs
- CookielessHelper.cs
- FragmentQuery.cs
- MeasurementDCInfo.cs
- SwitchLevelAttribute.cs
- StorageRoot.cs
- IdentityManager.cs
- ConfigXmlElement.cs
- NamespaceTable.cs
- X509ChainElement.cs
- PerfCounterSection.cs
- DocumentOutline.cs
- TextBox.cs
- XmlElementList.cs
- AppSettingsExpressionBuilder.cs
- Span.cs
- Soap.cs
- Attachment.cs
- WebServiceMethodData.cs
- Comparer.cs
- ObjectQuery_EntitySqlExtensions.cs
- QueuePathEditor.cs
- SID.cs
- TableItemStyle.cs
- ExeContext.cs
- DataGridViewColumnConverter.cs
- ImageCodecInfo.cs
- ListItemsPage.cs
- GorillaCodec.cs
- ModifierKeysConverter.cs
- ReferenceEqualityComparer.cs
- EdmError.cs
- FixedTextContainer.cs
- ValueUtilsSmi.cs
- CodeDesigner.cs
- RegexCompiler.cs
- TcpHostedTransportConfiguration.cs
- DataGridParentRows.cs
- FaultFormatter.cs
- BrowserCapabilitiesCodeGenerator.cs
- VersionConverter.cs
- typedescriptorpermissionattribute.cs
- QilSortKey.cs
- OpacityConverter.cs
- AutomationElementCollection.cs
- ObjectDataSourceChooseMethodsPanel.cs
- _Semaphore.cs
- VersionUtil.cs
- SQLBytes.cs
- RepeatButtonAutomationPeer.cs
- ServiceOperationParameter.cs
- Context.cs
- HelpEvent.cs
- MediaTimeline.cs
- EntityDataSourceDesigner.cs
- HttpStreams.cs
- TypeLoadException.cs
- GeneralTransform3DTo2DTo3D.cs
- LifetimeServices.cs
- Graph.cs
- HostExecutionContextManager.cs
- DrawingGroup.cs
- SpellerError.cs
- DetailsViewDeleteEventArgs.cs
- ExceptionHelpers.cs
- XPathSelectionIterator.cs
- EtwTrace.cs
- ActivityCompletionCallbackWrapper.cs
- CorrelationKey.cs
- HttpResponseInternalBase.cs
- JsonWriter.cs
- TypedElement.cs
- CodeCatchClauseCollection.cs
- BatchStream.cs
- VisualBrush.cs
- ConsumerConnectionPoint.cs
- SchemaImporterExtensionsSection.cs
- UnionExpr.cs
- RequestCacheEntry.cs
- EventManager.cs
- CatalogPart.cs
- CompiledXpathExpr.cs
- HttpRawResponse.cs
- XPathException.cs
- StandardToolWindows.cs
- Activator.cs
- TypePropertyEditor.cs
- XmlAttributeAttribute.cs
- Evidence.cs
- TrackingMemoryStream.cs
- Animatable.cs
- StreamGeometryContext.cs
- WindowsPen.cs
- WebControl.cs
- TypeTypeConverter.cs
- SettingsProperty.cs
- Column.cs
- MulticastNotSupportedException.cs
- WebPartConnectVerb.cs
- SchemaTypeEmitter.cs