コード例 #1
0
ファイル: Net2Base.cs プロジェクト: cxdcxd/RRS
 protected void reportLog(string log_message, LogType log_type, string section)
 {
     delegateNewLog?.Invoke(log_message, log_type, section);
 }
コード例 #2
0
 private void delegateNewLog(string log_message, LogType log_type, string section)
 {
     delegateInfoServiceNewLog?.Invoke(log_message, log_type, section);
 }
コード例 #3
0
 void HandleDelegateNewLog(string log_message, LogType log_type, string section)
 {
 }
コード例 #4
0
 private void Net2__delegateInfoServiceNewLog(string log_message, RRS.Tools.Log.LogType log_type, string section)
 {
     log_manager.addLog(log_message, RRS.Tools.Log.LogType.DEBUG, "Net2");
 }