using System.Globalization; using XFEExtension.NetCore.ServerInteractive.Attributes; using XFEExtension.NetCore.ServerInteractive.Implements.CoreService; namespace XFEExtension.NetCore.ServerInteractive.Utilities.Server.Services.CoreService; /// /// 连接校验服务 /// public partial class ConnectService : ServerCoreStandardServiceBase { /// /// 连接检查入口点 /// [EntryPoint("check_connect")] public async Task Connect() { Console.Write("检查连接"); await Close(DateTime.Now.ToString(CultureInfo.CurrentCulture)); } }