Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / DataEntity / System / Data / ProviderIncompatibleException.cs / 1305376 / ProviderIncompatibleException.cs
//---------------------------------------------------------------------- //// Copyright (c) Microsoft Corporation. All rights reserved. // // // @owner [....] // @backupOwner [....] //--------------------------------------------------------------------- namespace System.Data { using System; using System.Data; using System.Runtime.Serialization; using System.Security.Permissions; ////// This exception is thrown when the store provider exhibits a behavior incompatible with the entity client provider /// [Serializable] public sealed class ProviderIncompatibleException : EntityException { ////// Initializes a new instance of ProviderIncompatibleException /// public ProviderIncompatibleException() : base() { } ////// Initializes a new instance of ProviderIncompatibleException /// /// public ProviderIncompatibleException(string message) : base(message) { } ////// Constructor that takes a message and an inner exception /// /// /// public ProviderIncompatibleException(string message, Exception innerException) : base(message, innerException) { } ////// Initializes a new instance of ProviderIncompatibleException /// /// /// private ProviderIncompatibleException(SerializationInfo info, StreamingContext context) : base(info, context) { } } } // 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
- NeutralResourcesLanguageAttribute.cs
- RenderingBiasValidation.cs
- IndependentAnimationStorage.cs
- TextInfo.cs
- BitmapEffectInput.cs
- HtmlControlPersistable.cs
- XmlReturnReader.cs
- PropertyChangedEventArgs.cs
- SystemNetworkInterface.cs
- ProvideValueServiceProvider.cs
- ChtmlMobileTextWriter.cs
- XmlAttributeCollection.cs
- TextLineBreak.cs
- CubicEase.cs
- XsdBuildProvider.cs
- TreeNodeConverter.cs
- DataGridViewRowErrorTextNeededEventArgs.cs
- DataFormats.cs
- Trustee.cs
- ButtonBaseAdapter.cs
- ObjectStorage.cs
- DataBoundControlHelper.cs
- RegexReplacement.cs
- ELinqQueryState.cs
- MessageQueue.cs
- ExclusiveCanonicalizationTransform.cs
- CompilerError.cs
- diagnosticsswitches.cs
- ClientProxyGenerator.cs
- SqlCacheDependency.cs
- Operators.cs
- WpfXamlLoader.cs
- WpfKnownMemberInvoker.cs
- DefaultValidator.cs
- CodeCommentStatementCollection.cs
- EntitySetBaseCollection.cs
- HttpEncoder.cs
- XmlDeclaration.cs
- CodeTypeDeclaration.cs
- ProgressBarHighlightConverter.cs
- SystemSounds.cs
- EmptyWorkItem.cs
- PersonalizationAdministration.cs
- XmlQueryTypeFactory.cs
- UntrustedRecipientException.cs
- OleDbConnectionFactory.cs
- ConfigUtil.cs
- ServiceInfoCollection.cs
- CustomAttributeFormatException.cs
- ContextMenu.cs
- NativeMethods.cs
- SoapAttributeOverrides.cs
- AsyncResult.cs
- StateItem.cs
- GradientStop.cs
- LogicalExpressionTypeConverter.cs
- SessionPageStateSection.cs
- BuildTopDownAttribute.cs
- AutoGeneratedField.cs
- XmlUnspecifiedAttribute.cs
- ElapsedEventArgs.cs
- Math.cs
- SecurityElementBase.cs
- DaylightTime.cs
- DataGridViewCellParsingEventArgs.cs
- MinMaxParagraphWidth.cs
- TableLayoutPanel.cs
- WorkflowServiceOperationListItem.cs
- ThousandthOfEmRealDoubles.cs
- ApplicationServiceHelper.cs
- SessionIDManager.cs
- StringConcat.cs
- MetricEntry.cs
- NotifyIcon.cs
- WebAdminConfigurationHelper.cs
- TriggerCollection.cs
- AssociationType.cs
- CellCreator.cs
- StateChangeEvent.cs
- SynchronizedDispatch.cs
- PropertyIDSet.cs
- TypeBuilderInstantiation.cs
- FixedSOMLineRanges.cs
- DBSchemaTable.cs
- PathSegmentCollection.cs
- dtdvalidator.cs
- XmlElement.cs
- WsdlInspector.cs
- ConsoleEntryPoint.cs
- AnimationException.cs
- ProjectionAnalyzer.cs
- ByteStorage.cs
- IdentitySection.cs
- StorageEntitySetMapping.cs
- ProxyAttribute.cs
- DataTableNewRowEvent.cs
- ExceptionRoutedEventArgs.cs
- SafeUserTokenHandle.cs
- HttpContextServiceHost.cs
- SubqueryTrackingVisitor.cs