Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Service reference - why reuse types in referenced assemblies

I'm following instructions to add a service reference to my project and, by default, the "reuse types in referenced assemblies" is ticked.

If I leave it ticked, I get ambiguous warnings on controls like Label, which I have to declare fully now.

If I untick it, the warnings go away.

My questions are:

  1. Why would I want to reuse types?

  2. What does that mean exactly?

  3. What are the problems if I don't use it?

like image 651
Graham Avatar asked Oct 21 '16 09:10

Graham


People also ask

What is reuse types in referenced assemblies?

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.

What is a service reference in Visual Studio?

Applies to: Visual Studio Visual Studio for Mac Visual Studio Code. For . NET Framework projects, service reference enables a project to access one or more WCF Data Services.


1 Answers

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

  1. Why would I want to reuse types?

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

  1. What does that mean exactly?

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.

  1. What are the problems if I don't use it?

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.

like image 106
Gaspa79 Avatar answered Sep 18 '22 17:09

Gaspa79