Files
ProxyGenerator/src-examples/ProxyInterfaceConsumer/Http/IHttpClient.cs
T
2023-12-06 21:32:07 +01:00

13 lines
294 B
C#

using System.Net.Http;
namespace ProxyInterfaceConsumer.Http;
[ProxyInterfaceGenerator.Proxy(typeof(HttpClient), true)]
public partial interface IHttpClient : IHttpMessageInvoker
{
}
[ProxyInterfaceGenerator.Proxy(typeof(HttpMessageInvoker))]
public partial interface IHttpMessageInvoker
{
}