Example #1
0
        /*
           Static Method

        */
        /// <summary>
        /// Create a Context
        /// </summary>
        /// <param name="socket"></param>
        /// <param name="log"></param>
        /// <param name="server"></param>
        /// <param name="file"></param>
        /// <param name="password"></param>
        /// <returns></returns>
        public static HttpsContext Create(Socket socket, LogProvider log ,WebServer server,string file,string password)
        {
            return new HttpsContext(socket, log, server, file ,password);
        }
Example #2
0
 public HttpsContext(Socket socket, LogProvider log, WebServer server,string file ,string password)
     : base(socket,log,server)
 {
     this.file = file;
     this.password = password;
 }