Files
ProxyGenerator/src-examples/ProxyInterfaceConsumer/Http/IHttpClient.cs
T
Stef Heyenrath 0c19988fd2 fix
2023-03-14 18:50:47 +01:00

14 lines
346 B
C#

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
{
}
}