using XFEExtension.NetCore.ServerInteractive.Utilities.Helpers; namespace XFEExtension.NetCore.ServerInteractive.Options; /// /// XFE客户端请求器选项 /// public class XFEClientRequesterOptions { /// /// 请求地址 /// public string RequestAddress { get; set; } = "http://localhost:3300/"; /// /// 本次会话Session /// public string Session { get; set; } = string.Empty; /// /// 电脑信息 /// public string DeviceInfo { get; set; } = Environment.GetEnvironmentVariable("XFE_DEVICE_ID") ?? Environment.MachineName; }