MethodCallStatus class
- Last UpdatedDec 13, 2023
- 1 minute read
Get a unique RunId
Syntax
public Guid RunId { get; private set; }
Description
Gets a unique RunId for the method call.
Get the name of the method
Syntax
public string MethodName { get; private set; }
Description
Gets the name of the method on the Method Server being called.
Get error code
Syntax
public int ErrorCode { get; private set; }
Description
Gets the error code on a call execution failure.
Get run status
Syntax
public MethodCallState RunStatus { get; private set; }
Description
RunStatus is an enumeration that notes the state of MethodCallState. See MethodCallState enumeration for details.
Get output values of method execution
Syntax
public MethodArgument[] OutputArguments { get; private set; }
Description
Returns output values on method execution. Values will be ‘null’ if method execution fails.
Get call identifier
Syntax
public string UserCallId { get; set; }
Description
Returns the unique call identifier that is supplied in the CallMethod API.