Represents the time-series framework service host.
Inheritance: System.ServiceProcess.ServiceBase
Ejemplo n.º 1
0
 /// <summary>
 /// Creates new <see cref="ConsoleHost"/>.
 /// </summary>
 /// <param name="serviceHost">Service host instance.</param>
 public ConsoleHost(ServiceHostBase serviceHost)
 {
     m_serviceHost = serviceHost;
     m_originalForegroundColor = System.Console.ForegroundColor;
     m_clientID = Guid.NewGuid();
     m_displayLock = new object();
 }