예제 #1
0
 public ForwardChainExpectation When(HttpRequest httpRequest, Times times)
 {
     return(new ForwardChainExpectation(this, new Expectation(httpRequest, times, TimeToLive.Unlimited())));
 }
 public ForwardChainExpectation When(
     HttpRequest httpRequest, Times times, int priority = DefaultPriority)
 {
     return(When(httpRequest, times, TimeToLive.Unlimited(), priority));
 }