Previous Topic: Send DataNext Topic: Retrieve Results


Check Status

Use the following code to check status:

...
switch (proxy.AsyncCheckResponse(id)) //Perform check
{
...
  case FlowStatus.Ready:
  ...
  case FlowStatus.NotReady:
  ...
  default:
  ...
}
...