ParticleDeviceCallFunctionAsync Method |
Calls the function asynchronous.
Namespace: ParticleAssembly: Particle (in Particle.dll) Version: 0.8.5.14 (0.8.5.14)
Syntaxpublic Task<Result<int>> CallFunctionAsync(
string functionName,
string arg
)
Public Function CallFunctionAsync (
functionName As String,
arg As String
) As Task(Of Result(Of Integer))
public:
Task<Result<int>^>^ CallFunctionAsync(
String^ functionName,
String^ arg
)
member CallFunctionAsync :
functionName : string *
arg : string -> Task<Result<int>>
Parameters
- functionName
- Type: SystemString
Name of the function. - arg
- Type: SystemString
The argument.
Return Value
Type:
TaskResultInt32[Missing <returns> documentation for "M:Particle.ParticleDevice.CallFunctionAsync(System.String,System.String)"]
See Also