Service reference - why reuse types in referenced assemblies

拟墨画扇 提交于 2019-12-05 02:41:29

I know I'm answering like two years late, but...

1- To avoid having two classes with the same name, types, etc.

2- It means that, if you control both the server code and client code and define the datacontract classes in a separate assembly (and add a reference to it in the client code), the svcutil will not generate new classes but instead will re-use your already-defined classes that you use for the server.

3- Generally none if you 1) do not control the server code or 2) specify full namespaces for everything. You may get ambiguous warnings if you're in the same solution for server and client code.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!