XFE Git
XFE Studio Git
Git 首页 全局搜索
XFE 主站 文档 NuGet

XFEExtension.NetCore.ServerInteractive

[DLL] Server interaction extension, including user identity verification and querying in conjunction with AutoConfig

公开
关注 0 Fork 0 Star 0
返回提交历史

XFEstudio/XFEExtension.NetCore.ServerInteractive

调整部分文件命名空间

7020d92
XFE工作室室长 <mail@xfegzs.com>
提交于

代码差异

22 个文件 +39 -34
Modified XFEExtension.NetCore.ServerInteractive.Test/Program.cs +1 -1
@@ -6,7 +6,7 @@ using XFEExtension.NetCore.XFETransform.JsonConverter;
6 6
7 7 internal class Program
8 8 {
9 static readonly ServerInteractive serverInteractive = new("http://localhost:8080/api", DeviceHelper.GetUniqueHardwareId(), string.Empty);
9 static readonly XFEClientRequester serverInteractive = new("http://localhost:8080/api", DeviceHelper.GetUniqueHardwareId(), string.Empty);
10 10 //static readonly TableRequester tableRequester = new()
11 11 //{
12 12 // RequestAddress = "http://localhost:8080/api",
Added XFEExtension.NetCore.ServerInteractive/Interfaces/Requester/IRequestService.cs +5 -0
@@ -0,0 +1,5 @@
1 namespace XFEExtension.NetCore.ServerInteractive.Interfaces.Requester;
2
3 public interface IRequestService
4 {
5 }
Renamed XFEExtension.NetCore.ServerInteractive/Utilities/Server/Services/CoreService/ConnectService.cs +1 -1
@@ -2,7 +2,7 @@
2 2 using XFEExtension.NetCore.ServerInteractive.Models;
3 3 using XFEExtension.NetCore.XFETransform.JsonConverter;
4 4
5 namespace XFEExtension.NetCore.ServerInteractive.Utilities.Services.CoreService;
5 namespace XFEExtension.NetCore.ServerInteractive.Utilities.Server.Services.CoreService;
6 6
7 7 /// <summary>
8 8 /// 连接校验服务
Renamed XFEExtension.NetCore.ServerInteractive/Utilities/Server/Services/CoreService/CoreLogService.cs +1 -1
@@ -4,7 +4,7 @@ using XFEExtension.NetCore.ServerInteractive.Models;
4 4 using XFEExtension.NetCore.ServerInteractive.Utilities.Helpers;
5 5 using XFEExtension.NetCore.XFETransform.JsonConverter;
6 6
7 namespace XFEExtension.NetCore.ServerInteractive.Utilities.Services.CoreService;
7 namespace XFEExtension.NetCore.ServerInteractive.Utilities.Server.Services.CoreService;
8 8
9 9 /// <summary>
10 10 /// 核心日志服务
Renamed XFEExtension.NetCore.ServerInteractive/Utilities/Server/Services/CoreService/CoreServerExceptionProcessService.cs +2 -2
@@ -1,7 +1,7 @@
1 1 using XFEExtension.NetCore.CyberComm;
2 2 using XFEExtension.NetCore.ServerInteractive.Implements.CoreService;
3 3
4 namespace XFEExtension.NetCore.ServerInteractive.Utilities.Services.CoreService;
4 namespace XFEExtension.NetCore.ServerInteractive.Utilities.Server.Services.CoreService;
5 5
6 6 /// <summary>
7 7 /// 核心服务器异常处理服务
@@ -18,7 +18,7 @@ public class CoreServerExceptionProcessService : ServerCoreRegisterServiceBase
18 18 XFEServerCore.ServerCoreError += XFEServerCore_ServerCoreError;
19 19 }
20 20
21 private async void XFEServerCore_ServerCoreError(Server.XFEServerCore sender, Models.ServerCoreErrorEventArgs e)
21 private async void XFEServerCore_ServerCoreError(XFEServerCore sender, Models.ServerCoreErrorEventArgs e)
22 22 {
23 23 if (!e.Handled && e.CyberCommRequestEventArgs is not null)
24 24 {
Renamed XFEExtension.NetCore.ServerInteractive/Utilities/Server/Services/CoreService/DailyCounterService.cs +1 -1
@@ -4,7 +4,7 @@ using XFEExtension.NetCore.FileExtension;
4 4 using XFEExtension.NetCore.ServerInteractive.Implements.CoreService;
5 5 using XFEExtension.NetCore.ServerInteractive.Interfaces.ServerService;
6 6
7 namespace XFEExtension.NetCore.ServerInteractive.Utilities.Services.CoreService;
7 namespace XFEExtension.NetCore.ServerInteractive.Utilities.Server.Services.CoreService;
8 8
9 9 /// <summary>
10 10 /// 核心服务器天数服务
Renamed XFEExtension.NetCore.ServerInteractive/Utilities/Server/Services/CoreService/EntryPointVerifyServer.cs +1 -1
@@ -4,7 +4,7 @@ using XFEExtension.NetCore.ServerInteractive.Implements.CoreService;
4 4 using XFEExtension.NetCore.ServerInteractive.Models;
5 5 using XFEExtension.NetCore.ServerInteractive.Profiles;
6 6
7 namespace XFEExtension.NetCore.ServerInteractive.Utilities.Services.CoreService;
7 namespace XFEExtension.NetCore.ServerInteractive.Utilities.Server.Services.CoreService;
8 8
9 9 /// <summary>
10 10 /// 服务器入口点校验
Renamed XFEExtension.NetCore.ServerInteractive/Utilities/Server/Services/CoreService/IpBannerService.cs +1 -1
@@ -5,7 +5,7 @@ using XFEExtension.NetCore.ServerInteractive.Utilities.Helpers;
5 5 using XFEExtension.NetCore.StringExtension.Json;
6 6 using XFEExtension.NetCore.XFETransform.JsonConverter;
7 7
8 namespace XFEExtension.NetCore.ServerInteractive.Utilities.Services.CoreService;
8 namespace XFEExtension.NetCore.ServerInteractive.Utilities.Server.Services.CoreService;
9 9
10 10 /// <summary>
11 11 /// IP封禁服务
Renamed XFEExtension.NetCore.ServerInteractive/Utilities/Server/Services/CoreService/ServerCoreUserServiceBase.cs +1 -1
@@ -4,7 +4,7 @@ using XFEExtension.NetCore.ServerInteractive.Interfaces;
4 4 using XFEExtension.NetCore.ServerInteractive.Models.UserModels;
5 5 using XFEExtension.NetCore.ServerInteractive.Utilities.JsonConverter;
6 6
7 namespace XFEExtension.NetCore.ServerInteractive.Utilities.Services.CoreService;
7 namespace XFEExtension.NetCore.ServerInteractive.Utilities.Server.Services.CoreService;
8 8
9 9 /// <inheritdoc/>
10 10 public abstract class ServerCoreUserServiceBase : ServerCoreStandardRegisterAsyncServiceBase, IUserServiceBase
Renamed XFEExtension.NetCore.ServerInteractive/Utilities/Server/Services/CoreService/UserLoginAutoCleanService.cs +1 -1
@@ -7,7 +7,7 @@ using XFEExtension.NetCore.ServerInteractive.Interfaces;
7 7 using XFEExtension.NetCore.ServerInteractive.Models.UserModels;
8 8 using XFEExtension.NetCore.ServerInteractive.Utilities.JsonConverter;
9 9
10 namespace XFEExtension.NetCore.ServerInteractive.Utilities.Services.CoreService;
10 namespace XFEExtension.NetCore.ServerInteractive.Utilities.Server.Services.CoreService;
11 11
12 12 /// <summary>
13 13 /// 用户登录到期清除服务
Renamed XFEExtension.NetCore.ServerInteractive/Utilities/Server/Services/CoreService/UserLoginService.cs +1 -1
@@ -6,7 +6,7 @@ using XFEExtension.NetCore.StringExtension;
6 6 using XFEExtension.NetCore.StringExtension.Json;
7 7 using XFEExtension.NetCore.XFETransform.JsonConverter;
8 8
9 namespace XFEExtension.NetCore.ServerInteractive.Utilities.Services.CoreService;
9 namespace XFEExtension.NetCore.ServerInteractive.Utilities.Server.Services.CoreService;
10 10
11 11 /// <summary>
12 12 /// 用户登录服务
Renamed XFEExtension.NetCore.ServerInteractive/Utilities/Server/Services/CoreService/UserReloginService.cs +1 -1
@@ -7,7 +7,7 @@ using XFEExtension.NetCore.ServerInteractive.Utilities.Helpers;
7 7 using XFEExtension.NetCore.StringExtension;
8 8 using XFEExtension.NetCore.XFETransform.JsonConverter;
9 9
10 namespace XFEExtension.NetCore.ServerInteractive.Utilities.Services.CoreService;
10 namespace XFEExtension.NetCore.ServerInteractive.Utilities.Server.Services.CoreService;
11 11
12 12 /// <summary>
13 13 /// 用户登录校验服务
Renamed XFEExtension.NetCore.ServerInteractive/Utilities/Server/Services/CoreService/UserServiceBase.cs +1 -1
Renamed XFEExtension.NetCore.ServerInteractive/Utilities/Server/Services/CoreService/XFEDataTableManagerService.cs +1 -1
Renamed XFEExtension.NetCore.ServerInteractive/Utilities/Server/Services/ServerService/ServerExceptionProcessService.cs +1 -1
Renamed XFEExtension.NetCore.ServerInteractive/Utilities/Server/Services/ServerService/ServerIpInitializer.cs +1 -1
Renamed XFEExtension.NetCore.ServerInteractive/Utilities/Server/Services/ServerService/ServerLogInitializer.cs +1 -1
Renamed XFEExtension.NetCore.ServerInteractive/Utilities/Server/Services/ServerService/XFECoreServerProcessService.cs +1 -1
Modified XFEExtension.NetCore.ServerInteractive/Utilities/TableRequester.cs +3 -4
Renamed XFEExtension.NetCore.ServerInteractive/Utilities/XFEClientRequester.cs +11 -10
Modified XFEExtension.NetCore.ServerInteractive/Utilities/XFEServerBuilderExtensions.cs +1 -1
Modified XFEExtension.NetCore.ServerInteractive/Utilities/XFEServerCoreBuilderExtensions.cs +1 -1