コード例 #1
0
 public SendLogCommand(LogioClient client, string message, string node, string stream)
 {
     _client = client;
     Message = message;
     Node    = node;
     Stream  = stream;
 }
コード例 #2
0
 public RemoveStreamCommand(LogioClient client, string stream)
 {
     _client = client;
     Stream  = stream;
 }
コード例 #3
0
 public RemoveNodeCommand(LogioClient client, string node)
 {
     _client = client;
     Node    = node;
 }