Hi,
I am trying to convert a C # program to Cobol but there is an instruction that, despite not giving a compilation error, is not being executed.
The original statement is:
Manager.Http.SendRequestAsync(HttpMethodType.POST, this.ActionUri, body);
and the conversion will be:
invoke type Manager::Http::SendRequestAsync(type HttpMethodType::POST, self::ActionUri, body)
What is happening is that SendRequestAsync is not being executed.
Is there a different way to convert the statement to C #?
Thanks
Alberto Ferraz