The underlying service implementation.
 /// <summary>
 /// Implementation of the startup routine for the host service.
 /// </summary>
 private void StartupServer()
 {
     Service = new TestServiceEngine(_serviceOptions)
     {
         RootDirectory = _rootDirectory,
         TagExpression = _tagExpression,
         LogFile       = _logFile,
     };
     Service.ServeRequests();
 }
 /// <summary>
 /// Implementation of the startup routine for the host service.
 /// </summary>
 private void StartupServer()
 {
     Service = new TestServiceEngine(_serviceOptions)
     {
         RootDirectory = _rootDirectory,
         TagExpression = _tagExpression,
         LogFile = _logFile,
     };
     Service.ServeRequests();
 }