I have this simple code:
void Application_BeginRequest(object sender, EventArgs e) { Trace.Write("Exception Handling", "......"); }
However, a repeated sharp cry (without errors indicates only) about:

Method call skipped. The compiler will not generate a method call because the method is conditional, or it is a partial method without implementation
I can not see this line on the output of Trace.
however - other traces - I see.
Why is this?
(p. p. The page (which is in the website project) has trace="true" ).
source share