void debug(string msg) { if (SendDebug != null) { SendDebug(DebugImpl.Create(msg)); } }
/// <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)); } }
void status(string msg) { if (SendDebug != null) { SendDebug(DebugImpl.Create(msg, DebugLevel.Status)); } }
/// <summary> /// short form of senddebug /// </summary> /// <param name="msg"></param> public virtual void D(string msg) { SendDebugEvent(DebugImpl.Create(msg)); }
/// <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)); }