コード例 #1
0
 public WiresUpdateEventArgs(object identifier, WiresAction action)
 {
     Identifier = identifier;
     Action     = action;
 }
コード例 #2
0
 public WiresActionMessage(int id, WiresAction action)
 {
     Id     = id;
     Action = action;
 }
コード例 #3
0
 public WiresActionMessage(Guid guid, WiresAction action)
 {
     Guid   = guid;
     Action = action;
 }
コード例 #4
0
 public void PerformAction(int id, WiresAction action)
 {
     SendMessage(new WiresActionMessage(id, action));
 }
コード例 #5
0
 public void PerformAction(Guid guid, WiresAction action)
 {
     SendMessage(new WiresActionMessage(guid, action));
 }