Example #1
0
 public static IRestServer UseCorrelationId(this IRestServer server, Func <string> correlactionIdGenerator)
 {
     return(server.UseCorrelationId(null, correlactionIdGenerator));
 }
Example #2
0
 public static IRestServer UseCorrelationId(this IRestServer server, string correlationIdFieldName)
 {
     return(server.UseCorrelationId(correlationIdFieldName, null));
 }