Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6917553
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 27, 20262026-05-27T09:44:42+00:00 2026-05-27T09:44:42+00:00

When using a Trace.Listener can anyone tell me why the Trace.Write(string message, string category)

  • 0

When using a Trace.Listener can anyone tell me why the

Trace.Write(string message, string category) 

doesn’t pass the category string to the TraceFilter when the method

Trace.Write(object o, string category)

does pass the category string to the ShouldTrace method. Below are decompiles of both methods from Reflector. Just wondering why the .NET team would do something on one method and not on another method.

public virtual void Write(object o, string category)
{
    if ((this.Filter == null) || 
 this.Filter.ShouldTrace(null, "", TraceEventType.Verbose, 0, category, null, o))
    {
        if (category == null)
        {
            this.Write(o);
        }
        else
        {
            this.Write((o == null) ? "" : o.ToString(), category);
        }
    }
}

and then the string method.

public virtual void Write(string message, string category)
{
    if ((this.Filter == null) || 
         this.Filter.ShouldTrace(null, "", TraceEventType.Verbose, 0, message))
    {
        if (category == null)
        {
            this.Write(message);
        }
        else
        {
            this.Write(category + ": " + ((message == null) ? string.Empty : message));
        }
    }
}
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-27T09:44:43+00:00Added an answer on May 27, 2026 at 9:44 am

    The call to this.Write in the first overload

    this.Write((o == null) ? "" : o.ToString(), category);
    

    delegates the actual output to the second overload

    public virtual void Write(string message, string category)
    

    All of the formatting for the output is then centralized in the second overload:

    this.Write(category + ": " + ((message == null) ? string.Empty : message));
    

    By centralizing the actual formatting in this way, changing the formatting in a single place will change all trace output formatting. It’s an application of DRY principles.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

What is the use of GetHashCode() ? Can I trace object identity using GetHashCode()
Can anyone explain why DbgView misses some of my trace writes ? I'm using
Anyone knows the difference between System.Diagnostic.Trace and System.Diagnostic.TraceSource classes? I've been using Trace for
I'm using .net web config to create trace listener for debug and trace output
I get an odd intermittent error when trying to write a Diagnostics.Trace message from
I am using a NativeWindow object to subclass an unmanaged window's message pump, with
I'm trying to write a custom trace listener for Enterprise Library Logging which sends
I am using tracelistener in a multithreaded application to log message remotely, but the
In MFC C++ (Visual Studio 6) I am used to using the TRACE macro
I was running a trace on a Sql Server 2005 using the profiler and

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.