Это то, что я имею до сих пор.Я довольно новый.Буду очень признателен за помощь.Я стремлюсь сохранить информацию в текстовый файл, созданный почти везде, но желательно внутри временной папки или чего-то еще.
static async void GetNewData()
{
String page = "http://www.coinmarketcap.com";
var client = new HttpClient();
// Create the HttpContent for the form to be posted.
var requestContent = new FormUrlEncodedContent(new[] {
new KeyValuePair<string, string>("text", "This is a block of text"),
});
// Get the response.
HttpResponseMessage response = await client.PostAsync(page,
requestContent);
// Get the response content.
HttpContent responseContent = response.Content;
// Get the stream of the content.
using (var reader = new StreamReader(await responseContent.ReadAsStreamAsync()))
{
// Write the output.
Console.WriteLine(await reader.ReadToEndAsync());
using (StreamWriter w = File.AppendText(reader.ReadToEndAsync().ToString);
// StreamWriter sw1 = new StreamWriter(File.OpenWrite());
// sw1.Write(await reader.ReadToEndAsync() textytext);
}
}
}
}
Еще раз, любой совет будет чрезвычайно полезен, и я обязательно буду повышатьсамый точный ответ:)