vote up 0 vote down star

I want to return an anonymous type over WCF. Is this possible?

flag

33% accept rate
How does the client know what the type will be? – Steve Oct 14 at 15:45
This is a wrong thing to do, even if you use untyped contract – Krzysztof Koźmic Oct 15 at 9:56

4 Answers

vote up 1 vote down

OK, I understand. But then if I define a type - MyObj - for this purpose and mark its members IsRequired=false, how can I create+send across an instance of MyObj with only some of its members? Is this possible??

Take a look at [DataMember(EmitDefaultValue=false)]

link|flag
vote up 1 vote down

You cannot use anonymous types, but maybe you are talking about WCF and untyped messages?

There is an option in WCF to just define a parameter of type Message (and possibly a return value of the same type). This is just the raw message that goes to WCF (and comes back from it).

I can't find much good information out there - there's some documentation on MSDN, but the best I've seen so far is Kurt Claeys' blog post WCF : Untyped messages on WCF operations.

I would not recommend using this approach - it's a lot more grunt work to handle the message contents directly yourself and that's what WCF is trying to spare us from - but if you absolutely, positively have to tweak every bit of your message - this seems like the way to go.

Marc

link|flag
Custom messages are probably the way to go for this one. +1 – Randolpho Oct 14 at 18:09
vote up 0 vote down

You can't return an anonymous type from any method, can you? So why would you be able to return it from WCF?

link|flag
I don't understand this downvote - John is absolutely right, anonymous types cannot be returned from any .NET method, you can only ever use them within your current method. Why a downvote for a response that's 100% correct...... – marc_s Oct 17 at 9:14
vote up 1 vote down

No, it is not. You'll have to define your types ahead of time.

link|flag
OK, I understand. But then if I define a type - MyObj - for this purpose and mark its members IsRequired=false, how can I create+send across an instance of MyObj with only some of its members? Is this possible?? – Tamim Sadikali Oct 14 at 15:50
See the answers of either Eugene Osovetsky or marc_s. Either route will help you. I'd say marc_s' answer is probably your best one for your problem. – Randolpho Oct 14 at 18:10

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.