How can I know the number of IIS threads consumed at a given time by my ASP.NET Web API service?
I can count .NET CLR threads of the running application by the below code snippet:
int number = Process.GetCurrentProcess().Threads.Count;
but my question is about IIS threads.
IIS v8.5, Windows Server 2012