ParseCloud ClassParse
The ParseCloud class provides methods for interacting with Parse Cloud Functions.
Inheritance Hierarchy

SystemObject
  ParseParseCloud

Namespace: Parse
Assembly: Parse (in Parse.dll) Version: 1.5.5.0 (1.5.5.0)
Syntax

public static class ParseCloud
Methods

  NameDescription
Public methodStatic memberCallFunctionAsyncT(String, IDictionaryString, Object)
Calls a cloud function.
Public methodStatic memberCallFunctionAsyncT(String, IDictionaryString, Object, CancellationToken)
Calls a cloud function.
Top
Examples

For example, this sample code calls the "validateGame" Cloud Function and calls processResponse if the call succeeded and handleError if it failed.
var result =
    await ParseCloud.CallFunctionAsync<IDictionary<string, object>>("validateGame", parameters);
See Also

Reference