Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / DataEntity / System / Data / EntityCommandCompilationException.cs / 1305376 / EntityCommandCompilationException.cs
//---------------------------------------------------------------------- //// Copyright (c) Microsoft Corporation. All rights reserved. // // // @owner [....] // @backupOwner [....] //--------------------------------------------------------------------- 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
- ToolboxItemAttribute.cs
- DataGridViewDataErrorEventArgs.cs
- XhtmlBasicCalendarAdapter.cs
- CommandHelper.cs
- OutputCacheEntry.cs
- ContentFileHelper.cs
- RedirectionProxy.cs
- JobCollate.cs
- FontInfo.cs
- DispatcherOperation.cs
- DocumentPageTextView.cs
- AssemblyNameProxy.cs
- StoreItemCollection.Loader.cs
- InstanceCollisionException.cs
- ReadOnlyCollectionBase.cs
- DataStreams.cs
- LZCodec.cs
- DBConcurrencyException.cs
- TypeElement.cs
- IEnumerable.cs
- WebRequestModuleElement.cs
- FileRecordSequenceHelper.cs
- EntityUtil.cs
- ScriptingAuthenticationServiceSection.cs
- AuthorizationRuleCollection.cs
- ToolStripSplitStackLayout.cs
- CatalogPartChrome.cs
- DbConnectionOptions.cs
- InheritedPropertyChangedEventArgs.cs
- SharedUtils.cs
- XmlHierarchicalDataSourceView.cs
- OptionalMessageQuery.cs
- ListBindableAttribute.cs
- ElementFactory.cs
- VariableDesigner.xaml.cs
- TreeViewAutomationPeer.cs
- TiffBitmapDecoder.cs
- _BufferOffsetSize.cs
- Validator.cs
- AssemblyBuilderData.cs
- TemplateBuilder.cs
- ListViewPagedDataSource.cs
- NativeMethods.cs
- QilParameter.cs
- TripleDES.cs
- NullableIntMinMaxAggregationOperator.cs
- LoginUtil.cs
- XmlSchemaGroup.cs
- TextServicesCompartment.cs
- AccessedThroughPropertyAttribute.cs
- Expression.cs
- ToolboxItemSnapLineBehavior.cs
- ProxyAttribute.cs
- DataGridViewTextBoxEditingControl.cs
- COM2ExtendedUITypeEditor.cs
- QuaternionAnimation.cs
- PerformanceCounters.cs
- serverconfig.cs
- FixedSOMPageElement.cs
- ProxyHelper.cs
- ComEventsHelper.cs
- ObjectReaderCompiler.cs
- EmptyEnumerator.cs
- EmptyEnumerator.cs
- QueryStoreStatusRequest.cs
- NotificationContext.cs
- ListBindableAttribute.cs
- XsltCompileContext.cs
- CategoriesDocument.cs
- ApplicationServicesHostFactory.cs
- ResourceDictionaryCollection.cs
- ValueUnavailableException.cs
- DocumentViewerBaseAutomationPeer.cs
- HtmlTableCell.cs
- FacetChecker.cs
- SqlUserDefinedTypeAttribute.cs
- EntityWithKeyStrategy.cs
- MinMaxParagraphWidth.cs
- SymbolDocumentInfo.cs
- StringFreezingAttribute.cs
- DirectoryNotFoundException.cs
- EllipticalNodeOperations.cs
- basevalidator.cs
- PhysicalAddress.cs
- PathStreamGeometryContext.cs
- CalendarDayButton.cs
- EntityKey.cs
- SystemEvents.cs
- UserNameSecurityTokenProvider.cs
- TablePattern.cs
- ParameterReplacerVisitor.cs
- HijriCalendar.cs
- x509utils.cs
- ResourcePool.cs
- ADMembershipProvider.cs
- DispatcherHookEventArgs.cs
- BatchParser.cs
- RemoteWebConfigurationHost.cs
- ToolStripSplitStackLayout.cs
- XmlAnyAttributeAttribute.cs