public Sender(IRemoraConfig config) { if (config == null) throw new ArgumentNullException("config"); Contract.EndContractBlock(); _config = config; }
public PipelineFactory(IKernel kernel, IRemoraConfig config) { if (kernel == null) throw new ArgumentNullException("kernel"); if (config == null) throw new ArgumentNullException("config"); Contract.EndContractBlock(); _kernel = kernel; _config = config; }