namespace XFEExtension.NetCore.ServerInteractive.Interfaces.CoreService;
///
/// 服务器核心初始化服务
///
public interface IServerCoreVerifyService : IXFEStandardServerCoreServiceBase
{
///
/// 校验请求
///
/// 如果请求通过校验,返回true;否则返回false。
bool VerifyRequest();
///
/// 校验请求
///
/// 如果请求通过校验,返回true;否则返回false。
Task VerifyRequestAsync();
}