public ConnectionSentEvent(ConnectionSentContext param)
 {
     Parameter = param;
 }
Exemple #2
0
 public void Send(ConnectionSentContext param)
 {
     Emit(new ConnectionSentEvent(param));
 }
 public ConnectionSentCommand(ConnectionId id, ConnectionSentContext param) : base(id)
 {
     Parameter = param;
 }