Add test for HttpClient (#62)

This commit is contained in:
Stef Heyenrath
2023-03-14 18:39:23 +01:00
committed by GitHub
parent cbd467d2f3
commit f46c8533df
3 changed files with 48 additions and 0 deletions
@@ -0,0 +1,14 @@
namespace ProxyInterfaceConsumer.Http
{
[ProxyInterfaceGenerator.Proxy(typeof(System.Net.Http.HttpClient, true))]
public partial interface IHttpClient : IHttpMessageInvoker
{
}
[ProxyInterfaceGenerator.Proxy(typeof(System.Net.Http.HttpMessageInvoker))]
public partial interface IHttpMessageInvoker
{
}
}