views:

87

answers:

1

I am using Reflector but I can't find System.ServiceModel.ServiceHost.Dispose(). Where is it?

+4  A: 

It's on ServiceHostBase. It's explicitly implemented so you're looking for the name System.IDisposable.Dispose instead of simply Dispose

JaredPar