Wcf Serialize List Of Interfaces
HTML clipboard Objective In this article, I will explain • How to work with collection in WCF? • How to work with concrete collection List?
• How to work with interface IEnumerable? • How to convert Array at client side to collection Collection at service side and client side Since, COLLECTION is very much specific to.Net, so WCF does not expose it to the metadata of the service. But they are very useful, so WCF provides dedicated marshaling rules for collection. Collection will be exposed as array in service metadata Let us say, you are having a contract and service implementation as below, If you see carefully, I am returning a collection of the type student IService1.cs Service1.svc.cs Now when you add this service reference at the client side, you can see the collection is exposed as array. Download Fifa 2006 World Cup Torrent Iso Psp here.
In fact, WCF won't even return the DataContract MyClass. WCF can't figure out how to deserialize the list of dogs and cats. The solution is to use the KnownTypes attribute on the DataContract making use of these subclassed objects. With the KnownType attribute, WCF knows which concrete objects to use. This will serialize whatever list you may be using as generic object with a type. It is not like you actually try to serialize an interface. Of WCF, Dependency.
To see this, add the service reference in a client. I have created a console client and added the service reference of above service. When you click on ServiceReference1 in solution explorer, you can open the proxy code generated at the client side.
So click on object browser and you can see that array has been returned in metadata instead of collection. At the client side Working with List or Concrete collection Imagine a scenario, where return type is concrete collection not an interface. For example, we need to return List instead if IEnumerable As we know from.Net 3.5 all the classes are by default serialized. And collection we are returning is marked with Serializable not with DataContract. Signature of Add method should be, Let us say, Contract is, IService1.cs If you see above, we are returning List instead of IEnumerable. So again at the client side, List would be exposed as Student [] in service metadata.
Service implementation is as below, Service1.svc.cs And again after adding the service reference at the client side, you can see in the object browser List is exposed as Student[] So, to call the service at the client side, we need to get the student in array of student So if you see above code, I am taking the output of GetStudents() method in array of student(Student []). If you want to avoid that, you do not want to use array but instead you want to get collection at the client side. Follow the below steps, Step 1 While adding the service reference click on Advanced option Step 2 From the drop down of collection type tab, select System.Collections.Generic.List option. Now at the client side, Now you can see at the client side proxy is having list as return not array.
Conclusion I hope this article was useful to you. Thanks for reading. Happy Coding.