If you're hoping for an event or a public hook of some kind that will tell you what the ThreadPool threads are doing, unfortunately there is no such thing.
I can think of two other approaches that might help:
First, you can check the value of the workerThreads result from ThreadPool.GetAvailableThreads(), before and after calling into your library. If the value changes, the library may be the culprit. This is most likely to be meaningful in a test environment where you're only processing a single request. You can also save the workerThreads number in a custom Windows performance counter, and track it over time -- perhaps using it to compare one approach vs. the other.
Here's a link to an article that describes the performance counter approach:
http://msdn.microsoft.com/en-us/library/ff650682.aspx
If you're using IIS 7+, another possibility is to disable MaxConcurrentRequestsPerCPU (via HostingEnvironment in .NET 4.0+, or via the aspnet.config file in .NET 3.5 or later) by setting it to zero, and set MaxConcurrentThreadsPerCPU to a relatively small number, and measure the performance of your app under load, using one interface in your library vs. the other. If requests are getting queued due to not having enough threads, response times will jump accordingly. The details of how to do this and what measurements to make unfortunately depend on the structure of your library and web requests.