4 references to RetryRequestAsync
IISExpress.FunctionalTests (4)
src\Servers\IIS\IIS\test\Common.FunctionalTests\Infrastructure\Helpers.cs (1)
29
var response = await deploymentResult.HttpClient.
RetryRequestAsync
(path, r => r.IsSuccessStatusCode);
src\Servers\IIS\IIS\test\Common.FunctionalTests\Infrastructure\IISFunctionalTestBase.cs (2)
53
var response = await deploymentResult.HttpClient.
RetryRequestAsync
("HelloWorld", r => r.StatusCode == HttpStatusCode.ServiceUnavailable);
68
var response = await deploymentResult.HttpClient.
RetryRequestAsync
("HelloWorld", r => r.IsSuccessStatusCode);
src\Servers\IIS\IIS\test\Common.LongTests\ShutdownTests.cs (1)
559
await deploymentResult.HttpClient.
RetryRequestAsync
("/HelloWorld", r => r.Headers.Server.ToString().StartsWith("Microsoft", StringComparison.Ordinal));