ANSWER! This is the code I was looking for! It basically needed the stream position to be reset to 0 before it would display text...hee-hee-hee-hee-hee!
async Task Hit()
{
HttpClient client = new HttpClient();
HttpResponseMessage response = Task.Run(() => client.GetAsync("http://shotting.cc/")).Result;
HitPage = response;
HttpContent a = HitPage.Content;
byte[] storage = new byte[1024];
char[] chrStorage = new char[1024];
Stream x = await a.ReadAsStreamAsync();
StreamReader SR = new StreamReader(x);
//StreamWriter SW = new StreamWriter(x);
x.Position = 0;
TB.Text = SR.ReadToEnd() + "JOB DONE";
SR.Dispose();
// SW.Dispose();
return;
}