Reputation: 915
I am implementing some of the new API features of ServiceStack, specifically trying to use IReturnVoid
. I am consuming the service in Monotouch, but all the clients expect a response type.
Is this just a matter of the Monotouch API getting updated to support the IReturnVoid
type?
Upvotes: 1
Views: 398
Reputation: 143319
Use the client.SendOneWay() method.
The MonoTouch / MonoDroid libraries are a little behind the full release, something we hope to rectify soon.
Upvotes: 1