Code:
/ Dotnetfx_Win7_3.5.1 / Dotnetfx_Win7_3.5.1 / 3.5.1 / DEVDIV / depot / DevDiv / releases / Orcas / NetFXw7 / ndp / fx / src / DataEntity / System / Data / Map / ViewGeneration / ViewGenResults.cs / 1 / 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
- StreamReader.cs
- HtmlForm.cs
- Size3D.cs
- ThicknessConverter.cs
- ObjectTag.cs
- RemotingClientProxy.cs
- StateRuntime.cs
- GregorianCalendar.cs
- XmlCompatibilityReader.cs
- SqlUnionizer.cs
- QueryCacheKey.cs
- TextTabProperties.cs
- SerializerWriterEventHandlers.cs
- SqlDelegatedTransaction.cs
- AuthenticationManager.cs
- PersonalizationStateInfoCollection.cs
- CommandID.cs
- PingOptions.cs
- SspiWrapper.cs
- DefaultProxySection.cs
- OleDbConnection.cs
- SqlDependency.cs
- ProxySimple.cs
- StringDictionary.cs
- GenericTypeParameterBuilder.cs
- UIPermission.cs
- CommandTreeTypeHelper.cs
- SchemaElementDecl.cs
- XmlQueryOutput.cs
- TraversalRequest.cs
- UnmanagedMemoryStreamWrapper.cs
- CollectionViewSource.cs
- PropertyMetadata.cs
- XmlSignificantWhitespace.cs
- Script.cs
- FormsAuthenticationTicket.cs
- XmlAttribute.cs
- RemoteHelper.cs
- DataGridCaption.cs
- SafeCryptoHandles.cs
- XmlIterators.cs
- LayoutManager.cs
- MetadataArtifactLoaderCompositeFile.cs
- ExtendedPropertyDescriptor.cs
- Delay.cs
- IxmlLineInfo.cs
- SemanticResultValue.cs
- ProjectedSlot.cs
- CssTextWriter.cs
- UnsafeNativeMethods.cs
- TimeBoundedCache.cs
- RIPEMD160.cs
- CompiledELinqQueryState.cs
- AppSettingsExpressionBuilder.cs
- WCFServiceClientProxyGenerator.cs
- HostingPreferredMapPath.cs
- RenderTargetBitmap.cs
- relpropertyhelper.cs
- HtmlAnchor.cs
- ThreadAttributes.cs
- Column.cs
- ResetableIterator.cs
- MobileControlsSectionHelper.cs
- ConfigXmlAttribute.cs
- FormCollection.cs
- DbConnectionOptions.cs
- StylusButtonCollection.cs
- SqlRemoveConstantOrderBy.cs
- ExceptionNotification.cs
- ParameterBuilder.cs
- BackEase.cs
- FieldBuilder.cs
- IconEditor.cs
- HexParser.cs
- AndCondition.cs
- LazyInitializer.cs
- DataTableNewRowEvent.cs
- DateTimeParse.cs
- embossbitmapeffect.cs
- TogglePattern.cs
- PartitionedStreamMerger.cs
- DeclarativeCatalogPart.cs
- WinFormsComponentEditor.cs
- MetadataSection.cs
- Variable.cs
- SpeechSeg.cs
- WebPartPersonalization.cs
- LessThan.cs
- LookupNode.cs
- METAHEADER.cs
- MimeWriter.cs
- URIFormatException.cs
- ListDictionaryInternal.cs
- QilFunction.cs
- DataTableReaderListener.cs
- PersonalizationStateInfoCollection.cs
- ToolStripContainerActionList.cs
- SqlVisitor.cs
- SoapCodeExporter.cs
- ReturnValue.cs