public WiresUpdateEventArgs(object identifier, WiresAction action)
 {
     Identifier = identifier;
     Action     = action;
 }
 public WiresActionMessage(int id, WiresAction action)
 {
     Id     = id;
     Action = action;
 }
 public WiresActionMessage(Guid guid, WiresAction action)
 {
     Guid   = guid;
     Action = action;
 }
Ejemplo n.º 4
0
 public void PerformAction(int id, WiresAction action)
 {
     SendMessage(new WiresActionMessage(id, action));
 }
 public void PerformAction(Guid guid, WiresAction action)
 {
     SendMessage(new WiresActionMessage(guid, action));
 }