Code:
/ Net / Net / 3.5.50727.3053 / DEVDIV / depot / DevDiv / releases / Orcas / SP / 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
- HorizontalAlignConverter.cs
- ExternalCalls.cs
- WCFBuildProvider.cs
- ReaderWriterLock.cs
- XmlBindingWorker.cs
- PersistenceProviderBehavior.cs
- FunctionCommandText.cs
- DeferredReference.cs
- SafeEventLogReadHandle.cs
- PKCS1MaskGenerationMethod.cs
- TopClause.cs
- ADConnectionHelper.cs
- RightsManagementInformation.cs
- AccessViolationException.cs
- NamespaceMapping.cs
- HttpStreamFormatter.cs
- EFColumnProvider.cs
- PolyQuadraticBezierSegment.cs
- Hashtable.cs
- ExpressionVisitor.cs
- SqlDependencyUtils.cs
- RightsManagementLicense.cs
- MatrixAnimationUsingKeyFrames.cs
- CombinedHttpChannel.cs
- DataTableClearEvent.cs
- WebBrowserEvent.cs
- RangeValuePattern.cs
- HttpFileCollectionBase.cs
- ValidatorCollection.cs
- SqlUDTStorage.cs
- SafeFileMapViewHandle.cs
- SelectionProviderWrapper.cs
- Scene3D.cs
- DocumentOrderComparer.cs
- SqlClientFactory.cs
- TrustLevelCollection.cs
- DependencyPropertyValueSerializer.cs
- DefaultDialogButtons.cs
- TokenBasedSet.cs
- DesignerVerb.cs
- WindowsHyperlink.cs
- SqlDataSourceView.cs
- MenuItemCollection.cs
- TextBoxDesigner.cs
- LinkedResource.cs
- ComponentGuaranteesAttribute.cs
- XhtmlBasicPanelAdapter.cs
- ContourSegment.cs
- SessionChannels.cs
- PropertyItemInternal.cs
- coordinator.cs
- Rotation3DAnimation.cs
- LogRecordSequence.cs
- InternalControlCollection.cs
- TransformCollection.cs
- SoapDocumentServiceAttribute.cs
- XmlBinaryReader.cs
- SQLInt32.cs
- IPipelineRuntime.cs
- HtmlHistory.cs
- SamlSecurityTokenAuthenticator.cs
- FrameworkReadOnlyPropertyMetadata.cs
- DbDeleteCommandTree.cs
- EventEntry.cs
- XPathException.cs
- RegexRunner.cs
- WindowsListViewItemCheckBox.cs
- ForEachAction.cs
- SqlDataSourceDesigner.cs
- BrowserTree.cs
- TemplateNameScope.cs
- AppManager.cs
- ConfigPathUtility.cs
- CorePropertiesFilter.cs
- XmlDownloadManager.cs
- GlyphTypeface.cs
- ProjectedSlot.cs
- AnnotationResource.cs
- BezierSegment.cs
- WebPartPersonalization.cs
- TextSchema.cs
- XmlValidatingReader.cs
- ConnectionManagementElementCollection.cs
- PeerCollaborationPermission.cs
- StackSpiller.Bindings.cs
- BinaryEditor.cs
- SiteMembershipCondition.cs
- BindToObject.cs
- CodeSnippetExpression.cs
- FormsIdentity.cs
- ElementMarkupObject.cs
- ResourceReferenceExpressionConverter.cs
- PathSegment.cs
- XmlQueryContext.cs
- SafeEventHandle.cs
- ProtocolProfile.cs
- PeerToPeerException.cs
- PolicyValidationException.cs
- MemoryFailPoint.cs
- ToolStripContentPanel.cs