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.