Code:
/ Dotnetfx_Vista_SP2 / Dotnetfx_Vista_SP2 / 8.0.50727.4016 / DEVDIV / depot / DevDiv / releases / Orcas / QFE / ndp / fx / src / DataEntity / System / Data / InternalMappingException.cs / 2 / InternalMappingException.cs
//---------------------------------------------------------------------- //// Copyright (c) Microsoft Corporation. All rights reserved. // // // @owner [....], [....] //--------------------------------------------------------------------- using System.Data.Common.Utils; using System.Data.Mapping.ViewGeneration.Structures; using System.Runtime.Serialization; namespace System.Data { ////// Mapping exception class. Note that this class has state - so if you change even /// its internals, it can be a breaking change /// [Serializable] internal class InternalMappingException : EntityException { // effects: constructor with default message #region Constructors ////// default constructor /// internal InternalMappingException() // required ctor : base() { } ////// default constructor /// /// localized error message [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")] // required CTOR for exceptions. internal InternalMappingException(string message) // required ctor : base(message) { } ////// constructor /// /// localized error message /// inner exception [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")] // required CTOR for exceptions. internal InternalMappingException(string message, Exception innerException) // required ctor : base(message, innerException) { } ////// constructor /// /// /// protected InternalMappingException(SerializationInfo info, StreamingContext context) : base(info, context) { } // effects: constructor that allows a log internal InternalMappingException(string message, ErrorLog errorLog) : base(message) { EntityUtil.CheckArgumentNull(errorLog, "errorLog"); m_errorLog = errorLog; } // effects: constructor that allows single mapping error internal InternalMappingException(string message, ErrorLog.Record record) : base(message) { EntityUtil.CheckArgumentNull(record, "record"); m_errorLog = new ErrorLog(); m_errorLog.AddEntry(record); } #endregion #region Fields // Keep track of mapping errors that we want to give to the // user in one shot private ErrorLog m_errorLog; #endregion #region Properties ////// Returns the inner exceptions stored in this /// internal ErrorLog ErrorLog { get { return m_errorLog; } } #endregion } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. //---------------------------------------------------------------------- //// Copyright (c) Microsoft Corporation. All rights reserved. // // // @owner [....], [....] //--------------------------------------------------------------------- using System.Data.Common.Utils; using System.Data.Mapping.ViewGeneration.Structures; using System.Runtime.Serialization; namespace System.Data { ////// Mapping exception class. Note that this class has state - so if you change even /// its internals, it can be a breaking change /// [Serializable] internal class InternalMappingException : EntityException { // effects: constructor with default message #region Constructors ////// default constructor /// internal InternalMappingException() // required ctor : base() { } ////// default constructor /// /// localized error message [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")] // required CTOR for exceptions. internal InternalMappingException(string message) // required ctor : base(message) { } ////// constructor /// /// localized error message /// inner exception [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")] // required CTOR for exceptions. internal InternalMappingException(string message, Exception innerException) // required ctor : base(message, innerException) { } ////// constructor /// /// /// protected InternalMappingException(SerializationInfo info, StreamingContext context) : base(info, context) { } // effects: constructor that allows a log internal InternalMappingException(string message, ErrorLog errorLog) : base(message) { EntityUtil.CheckArgumentNull(errorLog, "errorLog"); m_errorLog = errorLog; } // effects: constructor that allows single mapping error internal InternalMappingException(string message, ErrorLog.Record record) : base(message) { EntityUtil.CheckArgumentNull(record, "record"); m_errorLog = new ErrorLog(); m_errorLog.AddEntry(record); } #endregion #region Fields // Keep track of mapping errors that we want to give to the // user in one shot private ErrorLog m_errorLog; #endregion #region Properties ////// Returns the inner exceptions stored in this /// internal ErrorLog ErrorLog { get { return m_errorLog; } } #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
- PersianCalendar.cs
- OutOfProcStateClientManager.cs
- EFAssociationProvider.cs
- ProcessThreadDesigner.cs
- ColumnResult.cs
- CompositionAdorner.cs
- MenuItemBindingCollection.cs
- DataGridAddNewRow.cs
- Run.cs
- SessionParameter.cs
- PolicyException.cs
- coordinatorscratchpad.cs
- RunWorkerCompletedEventArgs.cs
- XmlCharType.cs
- TraceLevelStore.cs
- GridViewSelectEventArgs.cs
- Panel.cs
- HttpProfileBase.cs
- SettingsContext.cs
- _IPv6Address.cs
- BuildProviderCollection.cs
- SettingsProviderCollection.cs
- BitConverter.cs
- Set.cs
- PersistenceMetadataNamespace.cs
- WebAdminConfigurationHelper.cs
- DataGridViewCellMouseEventArgs.cs
- PropertyReferenceSerializer.cs
- dataprotectionpermission.cs
- PropertyFilterAttribute.cs
- SoapSchemaImporter.cs
- Identifier.cs
- StrongNameKeyPair.cs
- FixedSOMTableCell.cs
- MediaContext.cs
- MaskedTextBoxTextEditor.cs
- HttpChannelListener.cs
- VisualProxy.cs
- HostedElements.cs
- DefaultValueTypeConverter.cs
- LinqDataSourceHelper.cs
- LoginUtil.cs
- ListViewCancelEventArgs.cs
- WebSysDisplayNameAttribute.cs
- UpdateManifestForBrowserApplication.cs
- WSTransactionSection.cs
- IconHelper.cs
- DaylightTime.cs
- ModifiableIteratorCollection.cs
- LabelAutomationPeer.cs
- QilFactory.cs
- ToolBarButtonClickEvent.cs
- StringAttributeCollection.cs
- InstallerTypeAttribute.cs
- DesignColumn.cs
- SqlCacheDependency.cs
- MultiBindingExpression.cs
- Lookup.cs
- FixedSOMPage.cs
- XmlHierarchyData.cs
- Set.cs
- CompensationParticipant.cs
- TransformDescriptor.cs
- DateTimeParse.cs
- WeakKeyDictionary.cs
- FeatureSupport.cs
- Win32.cs
- ColorConverter.cs
- DataRowView.cs
- GroupQuery.cs
- LinqDataSource.cs
- SmiMetaDataProperty.cs
- Rectangle.cs
- ObjectConverter.cs
- BaseCodeDomTreeGenerator.cs
- ToolStripControlHost.cs
- TableLayoutRowStyleCollection.cs
- ChannelTerminatedException.cs
- Animatable.cs
- TreeViewDataItemAutomationPeer.cs
- FtpWebResponse.cs
- DbProviderFactoriesConfigurationHandler.cs
- GenerateScriptTypeAttribute.cs
- Schema.cs
- StylusOverProperty.cs
- CellLabel.cs
- QilExpression.cs
- StringSource.cs
- CryptoProvider.cs
- GeneralTransform3DTo2DTo3D.cs
- DynamicDiscoveryDocument.cs
- View.cs
- DispatcherExceptionEventArgs.cs
- NetTcpSecurity.cs
- TextStore.cs
- CacheRequest.cs
- DataGridRowAutomationPeer.cs
- FixedSOMLineCollection.cs
- XPathQilFactory.cs
- SecurityTokenAuthenticator.cs