Exemplo n.º 1
0
 public static void Write(string message)
 {
     if (!initialized)
     {
         InitializeSettings(System.Reflection.Assembly.GetCallingAssembly().GetName().CodeBase);
     }
     TraceInternalEx.Write(message);
 }
Exemplo n.º 2
0
 public static void Write(object value, string category)
 {
     if (!initialized)
     {
         InitializeSettings(System.Reflection.Assembly.GetCallingAssembly().GetName().CodeBase);
     }
     TraceInternalEx.Write(value, category);
 }
Exemplo n.º 3
0
 public static void Assert(bool condition, string message, string detailMessage)
 {
     if (!initialized)
     {
         InitializeSettings(System.Reflection.Assembly.GetCallingAssembly().GetName().CodeBase);
     }
     TraceInternalEx.Assert(condition, message, detailMessage);
 }