Replies: 1 comment 2 replies
-
Hi, glad to hear it Ben. I don't have time right this moment to look at it, but I'll take a look over the next few days. :) |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hi there, this project is very helpful, thank you! :)
Is it possible to have additional output text fields in the Separate Thread example?
For example, in the PourCoffee() method, if I add an HttpClient GetAsync() request to retrieve some data from a web API, I'd like the 3 string property values in the returned JSON object to populate into 3 text fields:
txtSeparateThread.AppendText(strReturnValue1);
txt2SeparateThread.AppendText(strReturnValue2);
txt3SeparateThread.AppendText(strReturnValue3);
I haven't been able to figure out how to expand the functionality with the
readonly Action<string> write;
and theoverride void SendMessage(string text)
.Kind regards.
Ben Williams
Beta Was this translation helpful? Give feedback.
All reactions