Passing a Dictionary to WCF service
Posted
by Sandeep
on Stack Overflow
See other posts from Stack Overflow
or by Sandeep
Published on 2010-05-25T06:03:44Z
Indexed on
2010/05/25
6:11 UTC
Read the original article
Hit count: 266
I need to pass a Dictionary (with max 20,000 entries) to a WCF service. Can I pass it all by once?
void SubmitDictionary(Dictionary<string, MyEntry> val);
where MyEntry is :
class MyEntry
{
string Name;
long Age;
}
Is there a configuration for size of the value passed? or can we pass as large data as this?
© Stack Overflow or respective owner