Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

debug web service proxy class in C#

In my project I have created a web application which has a web service. In the same solution I have added another web application. I am consuming the web service from this application. I have added a web reference using add web reference using web reference option. I want to debug the proxy class generated(when i add a web reference). I put a debugger in the proxy class but it did not work.Then I copied the proxy class and created the a new class in client web app with same same and same content and deleted the web reference. But still I am not able to debug the proxy class. How can i debug the proxy class? Please help.

like image 711
Niraj Choubey Avatar asked Feb 17 '12 12:02

Niraj Choubey


1 Answers

Try removing [DebuggerStepThroughAttribute()] from the generated code

like image 100
Archeg Avatar answered Sep 18 '22 14:09

Archeg