namespace HttpClientStudy.Config { public class WebApiConfig { /// /// 主机 /// public string Host { get; set; } = "localhost"; /// /// 端口 /// public int Port { get; set; } = 5189; /// /// 协议(http 或者 https) /// public string Scheme { get; set; } = "http"; /// /// 基本路径,不以/结尾 /// public string PathBase { get; set; } = string.Empty; /// /// /// public string BaseUrl { get { return $"{Scheme}://{Host}:{Port}"; } } /// /// WebApi 互斥量 /// public string WebAppMutexName { get; set; } = "HttpClientStudy.WebApp"; } }