예제 #1
0
파일: API.cs 프로젝트: richardbenson/YAMS2
 public API(ref HttpListenerContext context, Server myServer)
 {
     this.QS = context.Request.QueryString;
     this.Request = context.Request;
     this.Response = context.Response;
     this.Method = new APIMethod(ref this.QS);
 }
예제 #2
0
파일: Core.cs 프로젝트: richardbenson/YAMS2
 public static void StartUp()
 {
     Web.Server _webServer = new Web.Server();
     _webServer.Start();
 }
예제 #3
0
파일: Core.cs 프로젝트: Jorch72/CS-YAMS2
 public static void StartUp()
 {
     Web.Server _webServer = new Web.Server();
     _webServer.Start();
 }