隐式引用System.Net.Http
大石头 authored at 2023-12-01 10:59:51
243.00 B
X
using System.Net.Http;

namespace NewLife.Remoting;

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