XFEExtension.NetCore.ServerInteractive
[DLL] Server interaction extension, including user identity verification and querying in conjunction with AutoConfig
关注
0
Fork
0
Star
0
using XFEExtension.NetCore.ServerInteractive.Interfaces.ServerService;
using XFEExtension.NetCore.ServerInteractive.Utilities.Server;
namespace XFEExtension.NetCore.ServerInteractive.Implements.ServerService;
/// <summary>
/// 异步服务器服务基类
/// </summary>
public abstract class AsyncServerServiceBase : IAsyncServerService
{
/// <inheritdoc/>
public XFEServer XFEServer { get; set; } = null!;
/// <inheritdoc/>
public abstract Task StartServiceAsync();
}
using XFEExtension.NetCore.ServerInteractive.Interfaces.ServerService;
using XFEExtension.NetCore.ServerInteractive.Utilities.Server;
namespace XFEExtension.NetCore.ServerInteractive.Implements.ServerService;
/// <summary>
/// 异步服务器服务基类
/// </summary>
public abstract class AsyncServerServiceBase : IAsyncServerService
{
/// <inheritdoc/>
public XFEServer XFEServer { get; set; } = null!;
/// <inheritdoc/>
public abstract Task StartServiceAsync();
}