私はしかし、私はVisual StudioでASP.net 4.0 webアプリケーションのコードをデバッグしていたとき、私はThreadPool.GetMaxThreadsが200として、カウントを返すことを見ています100ThreadPool.GetMaxThreadsはmachine.configのprocessModelタグに基づいて値を取得しますか?
<processModel autoConfig="false" maxWorkerThreads="100" maxIoThreads="100"/>
へのmachine.configでmaxIoThreadsとmaxWorkerThreadsを設定しています両方のために。
int workerThreads;
int portThreads;
System.Threading.ThreadPool.GetMaxThreads(out workerThreads, out portThreads);
//workerThreads & portThreads both get the value of 200
私の質問はのmachine.configとThreadPool.GetMaxThreads内のprocessModelタグの間に何らかの関係があるのでしょうか?