public void Send <T>(ISendContext <T> context) where T : class { var send = new SentMessageImpl <T>(context); try { _endpoint.Send(context); } catch (Exception ex) { send.SetException(ex); throw; } finally { _sent.Add(send); _scenario.AddSent(send); } }
public void AddSent(SentMessage message) { _sent.Add(message); }