Description of Control.
상속: DefaultNancyBootstrapper
예제 #1
0
 public static void Reset()
 {
     InternalServerControl.Reset();
 }
예제 #2
0
 public static void Start(string hostname, int port)
 {
     Port = port;
     InternalServerControl.Start(@"http://" + hostname + ":" + port);
 }
예제 #3
0
 public static void Stop()
 {
     InternalServerControl.Stop();
 }
예제 #4
0
 public static void Start(string url)
 {
     InternalServerControl.Start(url);
 }