I need to pass the dictionary (maximum 20,000 entries) to the WCF service. Can I transfer everything in one go?
void SubmitDictionary(Dictionary<string, MyEntry> val);
where is myentry:
class MyEntry { string Name; long Age; }
Is there any configuration for the size of the passed value? Or can we transfer big data like this?
dictionary c # wcf
Sandeep
source share