Call WCF service host directly

Posted by Steven on Stack Overflow See other posts from Stack Overflow or by Steven
Published on 2010-05-03T23:35:11Z Indexed on 2010/05/03 23:38 UTC
Read the original article Hit count: 308

Filed under:
|

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

© Stack Overflow or respective owner

Related posts about wcf

Related posts about host