예제 #1
0
 private SignalRTransportType(SignalRType type, SignalRAction action, object[] data)
 {
     Type   = type;
     Action = action;
     Data   = data;
 }
예제 #2
0
 public SignalRTransportType(SignalRType type, SignalRAction action, object data) : this(type, action, new[] { data })
 {
 }