Universe.Framework.Servers.HttpServer.BaseHttpServer.BaseHttpServer C# (CSharp) Method

BaseHttpServer() public method

public BaseHttpServer ( uint port, string hostName, bool isSecure, uint threadCount ) : System
port uint
hostName string
isSecure bool
threadCount uint
return System
        public BaseHttpServer (uint port, string hostName, bool isSecure, uint threadCount)
        {
            m_hostName = hostName;
            m_port = port;
            m_isSecure = isSecure;
            m_threadCount = threadCount;
        }