Option for using ThreadPool threads in ServiceHost
description
Default the ServiceHost spawns regular threads (as background threads) to handle connections. This is fine for smaller systems, but for systems with large amounts of connections this might degrade server performance considerably.
Using ThreadPool threads enables programmers to control the number of active connections by specifying the MinThreads and MaxThreads of the thread pool.