Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / DataEntity / System / Data / InternalMappingException.cs / 1305376 / InternalMappingException.cs
//---------------------------------------------------------------------- //// Copyright (c) Microsoft Corporation. All rights reserved. // // // @owner [....] // @backupOwner [....] //--------------------------------------------------------------------- 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
- CompositeActivityMarkupSerializer.cs
- SQLMoney.cs
- TextRunTypographyProperties.cs
- WebPartConnectionsDisconnectVerb.cs
- SqlLiftIndependentRowExpressions.cs
- AQNBuilder.cs
- PaintEvent.cs
- _NetRes.cs
- ConsoleTraceListener.cs
- BitmapEncoder.cs
- FormCollection.cs
- ContentElementAutomationPeer.cs
- SerialStream.cs
- HtmlInputImage.cs
- HtmlContainerControl.cs
- ParameterCollection.cs
- DesignTimeXamlWriter.cs
- BinaryNode.cs
- DataSourceCache.cs
- DefinitionUpdate.cs
- ViewGenResults.cs
- FactoryMaker.cs
- NullableDecimalSumAggregationOperator.cs
- RegexWorker.cs
- StoreAnnotationsMap.cs
- RegexRunner.cs
- DLinqAssociationProvider.cs
- AudioFormatConverter.cs
- LinkLabel.cs
- XmlSerializerVersionAttribute.cs
- ExtendedPropertyCollection.cs
- PropertyGrid.cs
- DesignerActionHeaderItem.cs
- SqlDataSource.cs
- ExpressionCopier.cs
- DataObjectMethodAttribute.cs
- BinaryParser.cs
- NativeMethods.cs
- OleDbDataReader.cs
- CodeCompiler.cs
- HttpApplicationFactory.cs
- DataGridViewRowStateChangedEventArgs.cs
- ImageField.cs
- LogLogRecord.cs
- XmlException.cs
- StylusPointProperty.cs
- ImageUrlEditor.cs
- AdRotator.cs
- ToolStripScrollButton.cs
- DragCompletedEventArgs.cs
- EventProviderBase.cs
- UniqueIdentifierService.cs
- NavigatingCancelEventArgs.cs
- WmlListAdapter.cs
- DataMemberAttribute.cs
- PreviewPageInfo.cs
- SerializationIncompleteException.cs
- PropagatorResult.cs
- XmlNodeReader.cs
- MarkupExtensionParser.cs
- FrameworkTextComposition.cs
- ResourceSet.cs
- ConfigXmlElement.cs
- ClassGenerator.cs
- StartUpEventArgs.cs
- WebPartActionVerb.cs
- StringWriter.cs
- ListDictionaryInternal.cs
- NativeMethods.cs
- AutomationIdentifier.cs
- BitmapEffectCollection.cs
- TreeIterators.cs
- QuaternionConverter.cs
- DocumentApplicationJournalEntry.cs
- XslVisitor.cs
- UDPClient.cs
- InstanceKey.cs
- Asn1IntegerConverter.cs
- Oci.cs
- AddressHeaderCollection.cs
- ChannelListenerBase.cs
- AsymmetricAlgorithm.cs
- EditorZone.cs
- DbConnectionClosed.cs
- TextTreeUndo.cs
- LazyInitializer.cs
- DataGridViewColumnCollectionEditor.cs
- TextEditor.cs
- ProcessManager.cs
- ClientSideProviderDescription.cs
- safex509handles.cs
- FloaterBaseParaClient.cs
- MemberMaps.cs
- Normalizer.cs
- InitializationEventAttribute.cs
- CheckBoxRenderer.cs
- Shape.cs
- DateTimeConverter.cs
- GroupBox.cs
- QilParameter.cs