Message() public method

Prints a message to the infoStream (if non-null), prefixed with the identifying information for this writer and the thread that's calling it.
public Message ( System message ) : void
message System
return void
Beispiel #1
0
 private void  Message(System.String message)
 {
     if (writer != null)
     {
         writer.Message("CMS: " + message);
     }
 }
 private void  Message(System.String message)
 {
     if (Verbose())
     {
         writer.Message("CMS: " + message);
     }
 }