Created
November 9, 2012 17:50
-
-
Save wadewegner/4047128 to your computer and use it in GitHub Desktop.
Call Parse Cloud Code from WinRT
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var parameters = new Dictionary<string, object> { { "message", "Hello!" } }; | |
await ParseCloud.CallFunctionAsync<IDictionary<string, object>>("sendsms", parameters); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
For those curious, this is the Cloud Code that's executing: