WebClient client = new WebClient();
Stream stream = client.OpenRead("https://api.vk.com/method/newsfeed.search?&Query=" + "New Year" + "&Extended=true&Count=200&access_token=" + token + "&v=5.64");
StreamReader sr = new StreamReader(stream);
string newLine;
while ((newLine = sr.ReadLine()) != null)
textBox1.Text += newLine;
stream.Close();