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
- FileCodeGroup.cs
- ToolStripButton.cs
- HttpsChannelListener.cs
- TypedReference.cs
- InvalidWMPVersionException.cs
- mda.cs
- CalendarTable.cs
- WebPartUtil.cs
- TcpChannelFactory.cs
- DoWorkEventArgs.cs
- Soap.cs
- PaginationProgressEventArgs.cs
- EntityTransaction.cs
- DefaultObjectMappingItemCollection.cs
- EntitySqlQueryCacheKey.cs
- TextRangeEditTables.cs
- ContextQuery.cs
- Attribute.cs
- NotifyInputEventArgs.cs
- FilteredAttributeCollection.cs
- AttributeParameterInfo.cs
- PolicyValidationException.cs
- TransformerTypeCollection.cs
- TextProperties.cs
- PageAsyncTaskManager.cs
- RSAPKCS1KeyExchangeFormatter.cs
- XamlClipboardData.cs
- PersonalizationProviderHelper.cs
- DependencyProperty.cs
- SafeMemoryMappedViewHandle.cs
- DiscoveryMessageSequence11.cs
- SystemIPAddressInformation.cs
- querybuilder.cs
- WindowsSlider.cs
- SortFieldComparer.cs
- DispatcherProcessingDisabled.cs
- EntityCommand.cs
- SecurityState.cs
- TokenizerHelper.cs
- XmlNullResolver.cs
- TreeViewItemAutomationPeer.cs
- PropertyPath.cs
- Crypto.cs
- SiteMap.cs
- ObjectIDGenerator.cs
- Button.cs
- MatchingStyle.cs
- CompilerCollection.cs
- DispatchWrapper.cs
- TableStyle.cs
- OutOfMemoryException.cs
- SmtpNegotiateAuthenticationModule.cs
- SystemTcpStatistics.cs
- SqlEnums.cs
- ImageAnimator.cs
- VisemeEventArgs.cs
- WarningException.cs
- _FtpControlStream.cs
- WebSysDefaultValueAttribute.cs
- JsonServiceDocumentSerializer.cs
- TrackingServices.cs
- ColumnWidthChangingEvent.cs
- MatrixStack.cs
- ConstructorBuilder.cs
- PageThemeCodeDomTreeGenerator.cs
- SystemResources.cs
- _UriTypeConverter.cs
- ArcSegment.cs
- SqlConnectionString.cs
- DesignerValidatorAdapter.cs
- SecurityHelper.cs
- GetWinFXPath.cs
- TemplateBamlRecordReader.cs
- XmlReader.cs
- TemplateModeChangedEventArgs.cs
- Vector3DConverter.cs
- HwndSource.cs
- ResourcePart.cs
- Not.cs
- WindowInteropHelper.cs
- ImageField.cs
- MultipleViewPatternIdentifiers.cs
- RelationshipDetailsCollection.cs
- WebPartManagerInternals.cs
- SqlTrackingService.cs
- SystemColors.cs
- ReferenceConverter.cs
- DependencyPropertyKind.cs
- COAUTHINFO.cs
- CopyAction.cs
- IconBitmapDecoder.cs
- RijndaelManagedTransform.cs
- NetNamedPipeSecurityMode.cs
- PagesChangedEventArgs.cs
- DispatcherProcessingDisabled.cs
- DataAdapter.cs
- BamlReader.cs
- NavigationProperty.cs
- RectIndependentAnimationStorage.cs
- QilStrConcatenator.cs