I'm currently following the example at http://msdn.microsoft.com/en-us/library/cc807255.aspx when I add a service reference, that has an ISyncContract contract on my client side, there is a method that is missing some parameters
example: on my contract file:
[OperationContract(IsInitiating = false, IsTerminating = false)]
void GetKnowledge(out uint batchSize, out SyncKnowledge knowledge);
on my client side:
private ISyncContract proxy;
(...)
proxy.GetKnowledge(out batchSize);
has this happened to some one else? what am i doing wrong?