Files
ProxyGenerator/src-examples/ProxyInterfaceConsumer/Http/IHttpClient.cs
T
2024-05-22 10:58:00 +01:00

10 lines
293 B
C#

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