[feat]ApiHttpClient新增事件 OnRequest/OnCreateClient
智能大石头 authored at 2023-11-27 21:57:19 大石头 committed at 2023-12-01 10:41:08
219.00 B
X
namespace NewLife.Remoting;

/// <summary>Http客户端事件参数</summary>
public class HttpClientEventArgs : EventArgs
{
    /// <summary>客户端</summary>
    public HttpClient Client { get; set; } = null!;
}