using System; namespace FastGithub.HttpServer { sealed class CaCertInstallerOfLinuxCentOS : CaCertInstallerOfLinuxRedHat { /// /// 是否支持 /// /// public override bool IsSupported() { return OperatingSystem.IsLinux() && IsReleasName("CentOS"); } } }