Using the API, in en asp.net application, I want to retrieve the full standard output of the tasks.
I use:
foreach (TaskClass tache in job.Tasks)
{
nbTache++;
TextBox1.Text += "\nTask " + nbTache.ToString() + " : " + tache.Name;
TextBox1.Text += "\n\nNumber of characters in StandardOutput = " + tache.Stats.StandardOutput.Length.ToString();
TextBox1.Text += "\n\nOutput\n------";
TextBox1.Text += "\n" + Encoding.ASCII.GetString(tache.Stats.StandardOutput);
TextBox1.Text += "\n---------------------------------------------------------";
}
I only get 2000 characters.
How can I get all the output, that I can see when I use the client?