public async global::System.Threading.Tasks.Task Task_ProcessAsync(int seqid, TProtocol iprot, TProtocol oprot, CancellationToken cancellationToken) { var args = new InternalStructs.TaskArgs(); await args.ReadAsync(iprot, cancellationToken); await iprot.ReadMessageEndAsync(cancellationToken); var result = new InternalStructs.TaskResult(); try { try { result.Success = await _iAsync.TaskAsync(args.Foo, args.Bar, cancellationToken); } catch (global::Thrift5320.exceptions.Task error) { result.Error = error; } await oprot.WriteMessageBeginAsync(new TMessage("Task", TMessageType.Reply, seqid), cancellationToken); await result.WriteAsync(oprot, cancellationToken); } catch (TTransportException) { throw; } catch (Exception ex) { var sErr = $"Error occurred in {GetType().FullName}: {ex.Message}"; if (_logger != null) { _logger.LogError(ex, sErr); } else { Console.Error.WriteLine(sErr); } var x = new TApplicationException(TApplicationException.ExceptionType.InternalError, " Internal error."); await oprot.WriteMessageBeginAsync(new TMessage("Task", TMessageType.Exception, seqid), cancellationToken); await x.WriteAsync(oprot, cancellationToken); } await oprot.WriteMessageEndAsync(cancellationToken); await oprot.Transport.FlushAsync(cancellationToken); }