Quantcast
Channel: ASP.NET Core
Viewing all articles
Browse latest Browse all 9386

ASP.NET Core 2 content

$
0
0

Hello all!

What is the difference between these two examples of code?

public IActionResult Get()
{
return Content(result, "application/xml");
}
[Produces("application/xml")]
public IActionResult Get()
{
    return Content(result);
}

Thank you!


Viewing all articles
Browse latest Browse all 9386

Trending Articles