You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
39 lines
1.1 KiB
39 lines
1.1 KiB
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace CoreAgent.ProtocolClient.HandlerEventArgs
|
|
{
|
|
public class HandlerCleanupEventArgs : EventArgs
|
|
{
|
|
/// <summary>
|
|
/// ID处理器数量
|
|
/// </summary>
|
|
public int IdHandlerCount { get; }
|
|
|
|
/// <summary>
|
|
/// 按名称处理器数量
|
|
/// </summary>
|
|
public int NamedHandlerCount { get; }
|
|
|
|
/// <summary>
|
|
/// 总清理数量
|
|
/// </summary>
|
|
public int TotalCleanedCount { get; }
|
|
|
|
/// <summary>
|
|
/// 构造函数
|
|
/// </summary>
|
|
/// <param name="idHandlerCount">ID处理器数量</param>
|
|
/// <param name="namedHandlerCount">按名称处理器数量</param>
|
|
/// <param name="totalCleanedCount">总清理数量</param>
|
|
public HandlerCleanupEventArgs(int idHandlerCount, int namedHandlerCount, int totalCleanedCount)
|
|
{
|
|
IdHandlerCount = idHandlerCount;
|
|
NamedHandlerCount = namedHandlerCount;
|
|
TotalCleanedCount = totalCleanedCount;
|
|
}
|
|
}
|
|
}
|
|
|