059886d1ca
* HttpClient * . * . * .
13 lines
294 B
C#
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
|
|
{
|
|
} |