Write() public static method

public static Write ( object value ) : void
value object
return void
Exemplo n.º 1
0
 public static void Write(object value, string category)
 {
     TraceInternal.Write(value, category);
 }
Exemplo n.º 2
0
 public static void Write(string message, string category)
 {
     TraceInternal.Write(message, category);
 }
Exemplo n.º 3
0
 public static void Write(string message)
 {
     TraceInternal.Write(message);
 }
Exemplo n.º 4
0
 public static void Write(object value)
 {
     TraceInternal.Write(value);
 }
Exemplo n.º 5
0
 public override void Write(string message)
 {
     TraceInternal.Write(message);
 }