Log() 공개 메소드

public Log ( string message ) : void
message string
리턴 void
예제 #1
0
 static void Log(string msg)
 {
     System.Diagnostics.Debug.Print(msg);
     try
     {
         XenStoreSession session = new XenStoreSession("XenUpdater");
         session.Log(msg);
     }
     catch
     {
     }
 }
예제 #2
0
 static void Log(string msg)
 {
     System.Diagnostics.Debug.Print(msg);
     try
     {
         XenStoreSession session = new XenStoreSession("XenUpdater");
         session.Log(msg);
     }
     catch
     {
     }
 }
예제 #3
0
 public void Log(string message)
 {
     session.Log(message);
 }