Universe.Framework.Servers.HttpServer.BaseHttpServer.BaseHttpServer C# (CSharp) Метод

BaseHttpServer() публичный Метод

public BaseHttpServer ( uint port, string hostName, bool isSecure, uint threadCount ) : System
port uint
hostName string
isSecure bool
threadCount uint
Результат System
        public BaseHttpServer (uint port, string hostName, bool isSecure, uint threadCount)
        {
            m_hostName = hostName;
            m_port = port;
            m_isSecure = isSecure;
            m_threadCount = threadCount;
        }