Tips for Debugging Your Code in Visual Studio 2010: Listing 1.

You can use the Managed Extensibility Framework (MEF) to create a provider that returns an existing TraceSource, creates or accesses one as a MEF part, or creates one through traditional means. I don't like calling this a factory, because in most cases calls don't create a new item. You can use a similar pattern in many other scenarios.

   [TraceSourceProvider()]
   public class TraceSourceProvider : ITraceSourceProvider 
   {
      [ImportMany()]
      private IEnumerable<ITraceSource> sources = null;
      private IEnumerable<TraceSource> traceSources = null;

      public System.Diagnostics.TraceSource 
        GetTraceSource(string traceSourceName)
      {
         if (traceSources  == null)
         {
            traceSources = from x in sources 
                           select x as TraceSource;
         }
         var matches = from x in traceSources 
                       where x.Name == traceSourceName 
                       select x;
         if (matches.Count() > 0)
         {
            var ret = matches.FirstOrDefault() as TraceSource;
            return ret;
         }
         var traceSource = new TraceSource(traceSourceName);
         traceSources = 
           traceSources.Union (new TraceSource[] {traceSource});
         return traceSource;
      }
comments powered by Disqus

Featured

  • Kubernetes for Developers

    Microsoft's Dan Wahlin previews his introductory "Kubernetes for Developers" session at Visual Studio Live! San Diego 2026, explaining how developers can get past the Kubernetes learning curve by starting locally, mastering Pods first, and using Services to make containerized applications reliably accessible.

  • VS Code Keeps Eye on Costs in v1.126 Update

    Visual Studio Code 1.126 adds session-level Copilot cost information, continuing Microsoft's recent focus on helping developers monitor and manage usage-based GitHub Copilot billing.

  • Open VSX 1.0.0 Puts Focus on Open Extension Registry for VS Code Ecosystem

    Eclipse Open VSX has reached 1.0.0, highlighting its role as a vendor-neutral registry for VS Code-compatible extensions.

  • Infragistics Puts MCP Toolchain at Center of Ultimate 26.1

    Infragistics Ultimate 26.1 introduces the Ignite UI Enterprise MCP toolchain for AI-assisted app development across Angular, React, Web Components and Blazor.

Subscribe on YouTube