Confusion with await not return value [on hold]












-2














I'm doing an API and now I'm consuming with ASP.NET MVC.
I have HomeController.cs, MailController.cs and Services.cs



HomeController



    public async Task<IActionResult> Mirror()
{
WeatherService _weather = new WeatherService();
await _weather.GetMail();
var a = await _weather.GetWeatherToDay();
return View(a);
}


MailController



        [HttpGet]
public async Task<IEnumerable<MailMessage>> GetEmail()
{
try
{
var client = new ImapClient("imap.gmail.com", 993, "ACCOUNT", "PASS", AuthMethod.Login, true);
var uids = client.Search(SearchCondition.All()).TakeLast(5);
var msg = client.GetMessages(uids, FetchOptions.HeadersOnly);
return msg;
}
catch (Exception ex)
{
throw new Exception(ex.Message);
}
}


Services



public async Task<string> GetMail()
{
using (HttpClient client = new HttpClient())
{
client.BaseAddress = new Uri("https://localhost:44313/api/");
var response = await client.GetAsync("mail");
var responseToString = await response.Content.ReadAsStringAsync();
return responseToString;
}
}


Yes I know that my code it could be better...
I think that the problem is in the awaiters because when try to save result on variable response from Services get error and the executions it's continue... but without value.



Thanks! :)










share|improve this question













put on hold as unclear what you're asking by Damien_The_Unbeliever, Servy, Peter Bons, EJoshuaS, Edric 2 days ago


Please clarify your specific problem or add additional details to highlight exactly what you need. As it's currently written, it’s hard to tell exactly what you're asking. See the How to Ask page for help clarifying this question. If this question can be reworded to fit the rules in the help center, please edit the question.















  • GetEmail does not await anything
    – Nkosi
    Dec 27 at 13:20






  • 4




    "Confusion", "problem is in". You haven't actually told us what the problem is or what's confusing you. Are you getting unexpected results (what did you expect)? Compilation errors? Runtime errors? Something else?
    – Damien_The_Unbeliever
    Dec 27 at 13:34
















-2














I'm doing an API and now I'm consuming with ASP.NET MVC.
I have HomeController.cs, MailController.cs and Services.cs



HomeController



    public async Task<IActionResult> Mirror()
{
WeatherService _weather = new WeatherService();
await _weather.GetMail();
var a = await _weather.GetWeatherToDay();
return View(a);
}


MailController



        [HttpGet]
public async Task<IEnumerable<MailMessage>> GetEmail()
{
try
{
var client = new ImapClient("imap.gmail.com", 993, "ACCOUNT", "PASS", AuthMethod.Login, true);
var uids = client.Search(SearchCondition.All()).TakeLast(5);
var msg = client.GetMessages(uids, FetchOptions.HeadersOnly);
return msg;
}
catch (Exception ex)
{
throw new Exception(ex.Message);
}
}


Services



public async Task<string> GetMail()
{
using (HttpClient client = new HttpClient())
{
client.BaseAddress = new Uri("https://localhost:44313/api/");
var response = await client.GetAsync("mail");
var responseToString = await response.Content.ReadAsStringAsync();
return responseToString;
}
}


Yes I know that my code it could be better...
I think that the problem is in the awaiters because when try to save result on variable response from Services get error and the executions it's continue... but without value.



Thanks! :)










share|improve this question













put on hold as unclear what you're asking by Damien_The_Unbeliever, Servy, Peter Bons, EJoshuaS, Edric 2 days ago


Please clarify your specific problem or add additional details to highlight exactly what you need. As it's currently written, it’s hard to tell exactly what you're asking. See the How to Ask page for help clarifying this question. If this question can be reworded to fit the rules in the help center, please edit the question.















  • GetEmail does not await anything
    – Nkosi
    Dec 27 at 13:20






  • 4




    "Confusion", "problem is in". You haven't actually told us what the problem is or what's confusing you. Are you getting unexpected results (what did you expect)? Compilation errors? Runtime errors? Something else?
    – Damien_The_Unbeliever
    Dec 27 at 13:34














-2












-2








-2


1





I'm doing an API and now I'm consuming with ASP.NET MVC.
I have HomeController.cs, MailController.cs and Services.cs



HomeController



    public async Task<IActionResult> Mirror()
{
WeatherService _weather = new WeatherService();
await _weather.GetMail();
var a = await _weather.GetWeatherToDay();
return View(a);
}


MailController



        [HttpGet]
public async Task<IEnumerable<MailMessage>> GetEmail()
{
try
{
var client = new ImapClient("imap.gmail.com", 993, "ACCOUNT", "PASS", AuthMethod.Login, true);
var uids = client.Search(SearchCondition.All()).TakeLast(5);
var msg = client.GetMessages(uids, FetchOptions.HeadersOnly);
return msg;
}
catch (Exception ex)
{
throw new Exception(ex.Message);
}
}


Services



public async Task<string> GetMail()
{
using (HttpClient client = new HttpClient())
{
client.BaseAddress = new Uri("https://localhost:44313/api/");
var response = await client.GetAsync("mail");
var responseToString = await response.Content.ReadAsStringAsync();
return responseToString;
}
}


Yes I know that my code it could be better...
I think that the problem is in the awaiters because when try to save result on variable response from Services get error and the executions it's continue... but without value.



Thanks! :)










share|improve this question













I'm doing an API and now I'm consuming with ASP.NET MVC.
I have HomeController.cs, MailController.cs and Services.cs



HomeController



    public async Task<IActionResult> Mirror()
{
WeatherService _weather = new WeatherService();
await _weather.GetMail();
var a = await _weather.GetWeatherToDay();
return View(a);
}


MailController



        [HttpGet]
public async Task<IEnumerable<MailMessage>> GetEmail()
{
try
{
var client = new ImapClient("imap.gmail.com", 993, "ACCOUNT", "PASS", AuthMethod.Login, true);
var uids = client.Search(SearchCondition.All()).TakeLast(5);
var msg = client.GetMessages(uids, FetchOptions.HeadersOnly);
return msg;
}
catch (Exception ex)
{
throw new Exception(ex.Message);
}
}


Services



public async Task<string> GetMail()
{
using (HttpClient client = new HttpClient())
{
client.BaseAddress = new Uri("https://localhost:44313/api/");
var response = await client.GetAsync("mail");
var responseToString = await response.Content.ReadAsStringAsync();
return responseToString;
}
}


Yes I know that my code it could be better...
I think that the problem is in the awaiters because when try to save result on variable response from Services get error and the executions it's continue... but without value.



Thanks! :)







c# asp.net api asp.net-web-api






share|improve this question













share|improve this question











share|improve this question




share|improve this question










asked Dec 27 at 13:11









sergibarca

21




21




put on hold as unclear what you're asking by Damien_The_Unbeliever, Servy, Peter Bons, EJoshuaS, Edric 2 days ago


Please clarify your specific problem or add additional details to highlight exactly what you need. As it's currently written, it’s hard to tell exactly what you're asking. See the How to Ask page for help clarifying this question. If this question can be reworded to fit the rules in the help center, please edit the question.






put on hold as unclear what you're asking by Damien_The_Unbeliever, Servy, Peter Bons, EJoshuaS, Edric 2 days ago


Please clarify your specific problem or add additional details to highlight exactly what you need. As it's currently written, it’s hard to tell exactly what you're asking. See the How to Ask page for help clarifying this question. If this question can be reworded to fit the rules in the help center, please edit the question.














  • GetEmail does not await anything
    – Nkosi
    Dec 27 at 13:20






  • 4




    "Confusion", "problem is in". You haven't actually told us what the problem is or what's confusing you. Are you getting unexpected results (what did you expect)? Compilation errors? Runtime errors? Something else?
    – Damien_The_Unbeliever
    Dec 27 at 13:34


















  • GetEmail does not await anything
    – Nkosi
    Dec 27 at 13:20






  • 4




    "Confusion", "problem is in". You haven't actually told us what the problem is or what's confusing you. Are you getting unexpected results (what did you expect)? Compilation errors? Runtime errors? Something else?
    – Damien_The_Unbeliever
    Dec 27 at 13:34
















GetEmail does not await anything
– Nkosi
Dec 27 at 13:20




GetEmail does not await anything
– Nkosi
Dec 27 at 13:20




4




4




"Confusion", "problem is in". You haven't actually told us what the problem is or what's confusing you. Are you getting unexpected results (what did you expect)? Compilation errors? Runtime errors? Something else?
– Damien_The_Unbeliever
Dec 27 at 13:34




"Confusion", "problem is in". You haven't actually told us what the problem is or what's confusing you. Are you getting unexpected results (what did you expect)? Compilation errors? Runtime errors? Something else?
– Damien_The_Unbeliever
Dec 27 at 13:34












2 Answers
2






active

oldest

votes


















0














MailController.GetEmail does not await anything.



I suggest you you refactor if no Task is needed



[HttpGet]
public IActionResult GetEmail() {
var client = new ImapClient("imap.gmail.com", 993, "ACCOUNT", "PASS", AuthMethod.Login, true);
var uids = client.Search(SearchCondition.All()).TakeLast(5);
var msgs = client.GetMessages(uids, FetchOptions.HeadersOnly);//IEnumerable<MailMessage>
return Ok(msgs);
}


Also the calling code for Mirror is not assigning a value;



//...
var data = await _weather.GetMail();
//...





share|improve this answer























  • This will behave identically to the OP's post, with the only difference being that exceptions are no longer wrapped in the returned task.
    – Servy
    Dec 27 at 14:57



















-1














I think you haven't use HttpResponseMessage in the service.



public async Task<string> GetMail() {
HttpClient client = new HttpClient();
client.BaseAddress = new Uri("https://localhost:44313/api/");
using (HttpResponseMessage response = await client.GetAsync("mail")) {
if (response.IsSuccessStatusCode) {
var responseToString = await response.Content.ReadAsStringAsync();
return responseToString;
}
}
}





share|improve this answer





















  • Why do you think this is functionally any different from using var?
    – mason
    Dec 27 at 14:12


















2 Answers
2






active

oldest

votes








2 Answers
2






active

oldest

votes









active

oldest

votes






active

oldest

votes









0














MailController.GetEmail does not await anything.



I suggest you you refactor if no Task is needed



[HttpGet]
public IActionResult GetEmail() {
var client = new ImapClient("imap.gmail.com", 993, "ACCOUNT", "PASS", AuthMethod.Login, true);
var uids = client.Search(SearchCondition.All()).TakeLast(5);
var msgs = client.GetMessages(uids, FetchOptions.HeadersOnly);//IEnumerable<MailMessage>
return Ok(msgs);
}


Also the calling code for Mirror is not assigning a value;



//...
var data = await _weather.GetMail();
//...





share|improve this answer























  • This will behave identically to the OP's post, with the only difference being that exceptions are no longer wrapped in the returned task.
    – Servy
    Dec 27 at 14:57
















0














MailController.GetEmail does not await anything.



I suggest you you refactor if no Task is needed



[HttpGet]
public IActionResult GetEmail() {
var client = new ImapClient("imap.gmail.com", 993, "ACCOUNT", "PASS", AuthMethod.Login, true);
var uids = client.Search(SearchCondition.All()).TakeLast(5);
var msgs = client.GetMessages(uids, FetchOptions.HeadersOnly);//IEnumerable<MailMessage>
return Ok(msgs);
}


Also the calling code for Mirror is not assigning a value;



//...
var data = await _weather.GetMail();
//...





share|improve this answer























  • This will behave identically to the OP's post, with the only difference being that exceptions are no longer wrapped in the returned task.
    – Servy
    Dec 27 at 14:57














0












0








0






MailController.GetEmail does not await anything.



I suggest you you refactor if no Task is needed



[HttpGet]
public IActionResult GetEmail() {
var client = new ImapClient("imap.gmail.com", 993, "ACCOUNT", "PASS", AuthMethod.Login, true);
var uids = client.Search(SearchCondition.All()).TakeLast(5);
var msgs = client.GetMessages(uids, FetchOptions.HeadersOnly);//IEnumerable<MailMessage>
return Ok(msgs);
}


Also the calling code for Mirror is not assigning a value;



//...
var data = await _weather.GetMail();
//...





share|improve this answer














MailController.GetEmail does not await anything.



I suggest you you refactor if no Task is needed



[HttpGet]
public IActionResult GetEmail() {
var client = new ImapClient("imap.gmail.com", 993, "ACCOUNT", "PASS", AuthMethod.Login, true);
var uids = client.Search(SearchCondition.All()).TakeLast(5);
var msgs = client.GetMessages(uids, FetchOptions.HeadersOnly);//IEnumerable<MailMessage>
return Ok(msgs);
}


Also the calling code for Mirror is not assigning a value;



//...
var data = await _weather.GetMail();
//...






share|improve this answer














share|improve this answer



share|improve this answer








edited Dec 27 at 15:06

























answered Dec 27 at 13:21









Nkosi

110k16117184




110k16117184












  • This will behave identically to the OP's post, with the only difference being that exceptions are no longer wrapped in the returned task.
    – Servy
    Dec 27 at 14:57


















  • This will behave identically to the OP's post, with the only difference being that exceptions are no longer wrapped in the returned task.
    – Servy
    Dec 27 at 14:57
















This will behave identically to the OP's post, with the only difference being that exceptions are no longer wrapped in the returned task.
– Servy
Dec 27 at 14:57




This will behave identically to the OP's post, with the only difference being that exceptions are no longer wrapped in the returned task.
– Servy
Dec 27 at 14:57













-1














I think you haven't use HttpResponseMessage in the service.



public async Task<string> GetMail() {
HttpClient client = new HttpClient();
client.BaseAddress = new Uri("https://localhost:44313/api/");
using (HttpResponseMessage response = await client.GetAsync("mail")) {
if (response.IsSuccessStatusCode) {
var responseToString = await response.Content.ReadAsStringAsync();
return responseToString;
}
}
}





share|improve this answer





















  • Why do you think this is functionally any different from using var?
    – mason
    Dec 27 at 14:12
















-1














I think you haven't use HttpResponseMessage in the service.



public async Task<string> GetMail() {
HttpClient client = new HttpClient();
client.BaseAddress = new Uri("https://localhost:44313/api/");
using (HttpResponseMessage response = await client.GetAsync("mail")) {
if (response.IsSuccessStatusCode) {
var responseToString = await response.Content.ReadAsStringAsync();
return responseToString;
}
}
}





share|improve this answer





















  • Why do you think this is functionally any different from using var?
    – mason
    Dec 27 at 14:12














-1












-1








-1






I think you haven't use HttpResponseMessage in the service.



public async Task<string> GetMail() {
HttpClient client = new HttpClient();
client.BaseAddress = new Uri("https://localhost:44313/api/");
using (HttpResponseMessage response = await client.GetAsync("mail")) {
if (response.IsSuccessStatusCode) {
var responseToString = await response.Content.ReadAsStringAsync();
return responseToString;
}
}
}





share|improve this answer












I think you haven't use HttpResponseMessage in the service.



public async Task<string> GetMail() {
HttpClient client = new HttpClient();
client.BaseAddress = new Uri("https://localhost:44313/api/");
using (HttpResponseMessage response = await client.GetAsync("mail")) {
if (response.IsSuccessStatusCode) {
var responseToString = await response.Content.ReadAsStringAsync();
return responseToString;
}
}
}






share|improve this answer












share|improve this answer



share|improve this answer










answered Dec 27 at 13:30









Shubham Sharma

37




37












  • Why do you think this is functionally any different from using var?
    – mason
    Dec 27 at 14:12


















  • Why do you think this is functionally any different from using var?
    – mason
    Dec 27 at 14:12
















Why do you think this is functionally any different from using var?
– mason
Dec 27 at 14:12




Why do you think this is functionally any different from using var?
– mason
Dec 27 at 14:12



Popular posts from this blog

Angular Downloading a file using contenturl with Basic Authentication

Olmecas

Can't read property showImagePicker of undefined in react native iOS