/// <summary>
 /// Applies per-instance configuration to the pipeline
 /// </summary>
 /// <param name="file">XML file with the configuration</param>
 /// <returns>The configured pipeline</returns>
 public SendPipelineWrapper WithInstanceConfig(string file)
 {
     _pipeline.ApplyInstanceConfig(file);
     return(this);
 }