コード例 #1
0
 void debug(string msg)
 {
     if (SendDebug != null)
     {
         SendDebug(DebugImpl.Create(msg));
     }
 }
コード例 #2
0
 /// <summary>
 /// sends a debug message about what your response is doing at the moment.
 /// </summary>
 /// <param name="msg"></param>
 public virtual void senddebug(string msg)
 {
     if (SendDebugEvent != null)
     {
         SendDebugEvent(DebugImpl.Create(msg));
     }
 }
コード例 #3
0
 void status(string msg)
 {
     if (SendDebug != null)
     {
         SendDebug(DebugImpl.Create(msg, DebugLevel.Status));
     }
 }
コード例 #4
0
 /// <summary>
 /// short form of senddebug
 /// </summary>
 /// <param name="msg"></param>
 public virtual void D(string msg)
 {
     SendDebugEvent(DebugImpl.Create(msg));
 }
コード例 #5
0
 /// <summary>
 /// sends a debug message about what your response is doing at the moment.
 /// </summary>
 /// <param name="msg"></param>
 public void senddebug(string msg)
 {
     SendDebug(DebugImpl.Create(msg));
 }