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