namespace XFEExtension.NetCore.ServerInteractive.Interfaces.CoreService;
///
/// 服务器标准核心服务
///
public interface IServerCoreStandardService : IXFEStandardServerCoreServiceBase
{
///
/// 同步入口点字典,Key为入口点路径,Value为对应的处理方法
///
Dictionary SyncEntryPoints { get; }
///
/// 异步入口点字典,Key为入口点路径,Value为对应的异步处理方法
///
Dictionary> AsyncEntryPoints { get; }
///
/// 服务器标准核心服务初始化事件(在请求初始化的时候执行)
///
void Initialize();
}