Esempio n. 1
0
 protected async Task <HttpResponseMessage> SendDeleteRequestAsync(IntTestContext intTestContext)
 {
     using var client = intTestContext.CreateClient();
     return(await client.DeleteAsync(intTestContext.Uri));
 }
Esempio n. 2
0
 protected async Task <HttpResponseMessage> SendPutRequestAsync(IntTestContext intTestContext)
 {
     using var client = intTestContext.CreateClient();
     return(await client.PutAsync(intTestContext.Uri, intTestContext.HttpContent));
 }