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
- VisualStateManager.cs
- GeometryCombineModeValidation.cs
- DataGridViewAutoSizeColumnModeEventArgs.cs
- ClientSettings.cs
- SmuggledIUnknown.cs
- ResXBuildProvider.cs
- NavigatorOutput.cs
- ValidateNames.cs
- SqlSupersetValidator.cs
- ShaderEffect.cs
- QilLoop.cs
- WebZone.cs
- pingexception.cs
- CommandEventArgs.cs
- Hex.cs
- xml.cs
- DataGridViewColumnCollectionDialog.cs
- XmlEntityReference.cs
- SqlCommandSet.cs
- WindowsEditBox.cs
- DataGridViewCellLinkedList.cs
- ListMarkerLine.cs
- NameValueSectionHandler.cs
- SystemBrushes.cs
- BindUriHelper.cs
- GridItemPattern.cs
- PackWebRequest.cs
- DataGridViewCellErrorTextNeededEventArgs.cs
- DragEvent.cs
- MailWebEventProvider.cs
- TableDetailsCollection.cs
- XmlDataContract.cs
- GrammarBuilder.cs
- SortDescriptionCollection.cs
- CodeCommentStatementCollection.cs
- SelectedDatesCollection.cs
- CodeSubDirectoriesCollection.cs
- GacUtil.cs
- HtmlContainerControl.cs
- StrongNameIdentityPermission.cs
- ViewLoader.cs
- ConfigurationStrings.cs
- CompoundFileStreamReference.cs
- MemberNameValidator.cs
- XmlSerializationReader.cs
- DataGridItemCollection.cs
- PieceNameHelper.cs
- URLString.cs
- NotSupportedException.cs
- ServiceModelConfigurationElementCollection.cs
- Timer.cs
- PTManager.cs
- FormViewPageEventArgs.cs
- PerfCounterSection.cs
- HideDisabledControlAdapter.cs
- DataGridSortCommandEventArgs.cs
- ConnectionPoolManager.cs
- XmlSchemaSubstitutionGroup.cs
- MultiAsyncResult.cs
- ListItem.cs
- DecoderBestFitFallback.cs
- DragEvent.cs
- GenericParameterDataContract.cs
- SecurityContext.cs
- TextInfo.cs
- PrintDialog.cs
- ImageConverter.cs
- TemplateControlCodeDomTreeGenerator.cs
- DesignerUtils.cs
- CompilerInfo.cs
- AsyncStreamReader.cs
- SqlFileStream.cs
- TypeToStringValueConverter.cs
- Random.cs
- RegexCaptureCollection.cs
- GreaterThan.cs
- MultipleFilterMatchesException.cs
- RemoveStoryboard.cs
- TypeUtil.cs
- LiteralSubsegment.cs
- InvalidComObjectException.cs
- Expressions.cs
- IpcClientChannel.cs
- SwitchLevelAttribute.cs
- SQLInt32Storage.cs
- PeerService.cs
- StatusBar.cs
- FixedTextView.cs
- XamlWriter.cs
- CapabilitiesPattern.cs
- Util.cs
- TrustManagerPromptUI.cs
- _NegoStream.cs
- OleDbInfoMessageEvent.cs
- ClientUrlResolverWrapper.cs
- HitTestParameters.cs
- ProcessMessagesAsyncResult.cs
- FilterElement.cs
- StrongName.cs
- XmlSchemaAnnotation.cs