I'd added a service-reference into my ASP.NET project. VS then automatically generate the proxy class appropriate. Now I wanna extract all web-service class which doesn't belong to the above proxy class. What is the proper way ? Example:

[System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
[System.ServiceModel.ServiceContractAttribute(ConfigurationName="MyService.IService")]
public interface IService {...}

I can got attribute GeneratedCodeAttribute to filter it out, but my main concern is that, is it stable ? As if others can use other generator tool to generate this proxy class through service reference, not by VS generator ?

Thanks & have a nice day to all.

link|improve this question

60% accept rate
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.