BrandonG
BrandonG

Reputation: 915

How to consume a Servicestack.net rest method with IreturnVoid

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

Answers (1)

mythz
mythz

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

Related Questions