In Visual Studio 2012, is there a fast way to find all specific lines in my entire solution where any call is being made to any method that exists within one specific web reference?
I am not looking for just one specific method, my web reference has a large number of methods in it, and I want to find them all.
Or is the best way to go about this to just look for all instantiations of any required object(s) I am creating prior to to calling those web methods, and then narrow it down from there?