xxxxxxxxxx
private async Task PostDataFireAndForgetAsync(SomeModel model)
try {
using (var client = new HttpClient()) {
var targetUrl="SomeUrl";
await client.PostAsync(targetUrl, new FormUrlEncodedContent(model.Content));
}
} catch (Exception ex) {
//we didn't care about the response, no additional requirements here
//ignore
}
}