I'm hosting a WCF service inside a winform app. I want to monitor when somebody calls the service to a textbox on the form like:
2:23 Method X called params(x, y)
2:24 Method Y called params(z)
I am using a service host for WCF and inside my concrete class I have created some delegates and events. I just cant seem to wire the events up because my object is of type ServiceHost not my object.
Any help