Code:
/ Dotnetfx_Vista_SP2 / Dotnetfx_Vista_SP2 / 8.0.50727.4016 / DEVDIV / depot / DevDiv / releases / Orcas / QFE / ndp / fx / src / DataEntity / System / Data / Map / ViewGeneration / ViewGenResults.cs / 2 / ViewGenResults.cs
//---------------------------------------------------------------------- //// Copyright (c) Microsoft Corporation. All rights reserved. // // // @owner [....] // @backupOwner [....] //--------------------------------------------------------------------- using System.Data.Common.Utils; using System.Data.Metadata.Edm; using System.Data.Mapping.ViewGeneration.Structures; using System.Data.EntityModel; using System.Collections.Generic; using System.Text; namespace System.Data.Mapping.ViewGeneration { // This class is responsible for keeping track of the results from view // generation - errors and correct views internal class ViewGenResults : InternalBase { #region Constructor internal ViewGenResults() { m_views = new KeyToListMap(EqualityComparer .Default); m_errorLog = new ErrorLog(); } #endregion #region Fields private KeyToListMap m_views; private ErrorLog m_errorLog; #endregion #region Properties // effects: Returns the generated views internal KeyToListMap Views { get { return m_views; } } // effects: Returns the errors that were generated. If no errors, // returns an empty list [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")] // referenced (indirectly) by System.Data.Entity.Design.dll internal IEnumerable Errors { get { return m_errorLog.Errors; } } // effects: Returns true iff any error was generated internal bool HasErrors { get { return m_errorLog.Count > 0; } } #endregion #region Methods // effects: Add the set of errors in errorLog to this internal void AddErrors(ErrorLog errorLog) { m_errorLog.Merge(errorLog); } // effects: Returns all the errors as a string (not to be used for // end user strings, i.e., in exceptions etc) internal string ErrorsToString() { return m_errorLog.ToString(); } internal override void ToCompactString(StringBuilder builder) { // Number of views builder.Append(m_errorLog.Count); builder.Append(" "); // Print the errors only m_errorLog.ToCompactString(builder); } #endregion } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. //---------------------------------------------------------------------- // // Copyright (c) Microsoft Corporation. All rights reserved. // // // @owner [....] // @backupOwner [....] //--------------------------------------------------------------------- using System.Data.Common.Utils; using System.Data.Metadata.Edm; using System.Data.Mapping.ViewGeneration.Structures; using System.Data.EntityModel; using System.Collections.Generic; using System.Text; namespace System.Data.Mapping.ViewGeneration { // This class is responsible for keeping track of the results from view // generation - errors and correct views internal class ViewGenResults : InternalBase { #region Constructor internal ViewGenResults() { m_views = new KeyToListMap(EqualityComparer .Default); m_errorLog = new ErrorLog(); } #endregion #region Fields private KeyToListMap m_views; private ErrorLog m_errorLog; #endregion #region Properties // effects: Returns the generated views internal KeyToListMap Views { get { return m_views; } } // effects: Returns the errors that were generated. If no errors, // returns an empty list [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")] // referenced (indirectly) by System.Data.Entity.Design.dll internal IEnumerable Errors { get { return m_errorLog.Errors; } } // effects: Returns true iff any error was generated internal bool HasErrors { get { return m_errorLog.Count > 0; } } #endregion #region Methods // effects: Add the set of errors in errorLog to this internal void AddErrors(ErrorLog errorLog) { m_errorLog.Merge(errorLog); } // effects: Returns all the errors as a string (not to be used for // end user strings, i.e., in exceptions etc) internal string ErrorsToString() { return m_errorLog.ToString(); } internal override void ToCompactString(StringBuilder builder) { // Number of views builder.Append(m_errorLog.Count); builder.Append(" "); // Print the errors only m_errorLog.ToCompactString(builder); } #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
- TreeViewBindingsEditor.cs
- TextTreeUndo.cs
- RunClient.cs
- SecurityResources.cs
- MD5.cs
- ArrayItemValue.cs
- HyperLinkColumn.cs
- Comparer.cs
- UriTemplatePathPartiallyEquivalentSet.cs
- ClientTargetSection.cs
- _CookieModule.cs
- StoreAnnotationsMap.cs
- panel.cs
- IItemContainerGenerator.cs
- CloseSequence.cs
- ResourceCategoryAttribute.cs
- CapabilitiesRule.cs
- TextUtf8RawTextWriter.cs
- VerticalAlignConverter.cs
- NativeMethods.cs
- RIPEMD160Managed.cs
- ColumnResult.cs
- DocumentPageHost.cs
- HttpProcessUtility.cs
- Configuration.cs
- EndOfStreamException.cs
- ProtocolsInstallComponent.cs
- ProcessStartInfo.cs
- Int64Storage.cs
- SqlFacetAttribute.cs
- AppManager.cs
- TextUtf8RawTextWriter.cs
- RemoteWebConfigurationHostStream.cs
- ConfigXmlWhitespace.cs
- ISAPIRuntime.cs
- WindowsStartMenu.cs
- CustomErrorsSectionWrapper.cs
- HostedElements.cs
- ImageCodecInfo.cs
- ComplexTypeEmitter.cs
- IPipelineRuntime.cs
- LinqDataSourceView.cs
- DbException.cs
- AssemblyEvidenceFactory.cs
- XmlDataDocument.cs
- ZipIOZip64EndOfCentralDirectoryBlock.cs
- UnknownBitmapEncoder.cs
- SchemaType.cs
- PtsHost.cs
- DataSource.cs
- SubtreeProcessor.cs
- ProjectionCamera.cs
- ObjectFactoryCodeDomTreeGenerator.cs
- UndirectedGraph.cs
- SourceFileBuildProvider.cs
- DocumentationServerProtocol.cs
- XsdDataContractImporter.cs
- WaitHandleCannotBeOpenedException.cs
- CodeNamespace.cs
- DataGridViewRow.cs
- embossbitmapeffect.cs
- InkCanvasInnerCanvas.cs
- ImageAttributes.cs
- AuthenticationModuleElementCollection.cs
- RegexGroup.cs
- BuildProviderUtils.cs
- TypeExtensionConverter.cs
- MetricEntry.cs
- SafeTokenHandle.cs
- ImageMap.cs
- HttpRuntime.cs
- HttpEncoder.cs
- Timeline.cs
- IdentityReference.cs
- ReadOnlyHierarchicalDataSourceView.cs
- ListViewVirtualItemsSelectionRangeChangedEvent.cs
- PartitionedStream.cs
- GeneralTransform3DTo2D.cs
- ResourceReferenceKeyNotFoundException.cs
- CLSCompliantAttribute.cs
- RadioButtonRenderer.cs
- RC2CryptoServiceProvider.cs
- WinFormsUtils.cs
- CodeRemoveEventStatement.cs
- CancellationHandler.cs
- ListMarkerLine.cs
- UrlPath.cs
- FamilyMapCollection.cs
- QilSortKey.cs
- WrappedDispatcherException.cs
- StoryFragments.cs
- HttpListener.cs
- OdbcPermission.cs
- AsymmetricCryptoHandle.cs
- WizardStepBase.cs
- ReferencedCollectionType.cs
- QilLiteral.cs
- RegexCompilationInfo.cs
- GraphicsContext.cs
- ClientConfigurationSystem.cs