मैं नीचे कोई सामग्री के साथ एक स्थिति कोड 418 वापस करने के लिए उदाहरण नियंत्रक चाहते हैं। स्टेटस कोड को सेट करना काफी आसान है लेकिन फिर ऐसा लगता है कि कुछ ऐसा है जिसे अनुरोध के अंत का संकेत देने के लिए कुछ करना होगा। ASP.NET Core से पहले या WebForms में MVC में, जो कि एक कॉल हो सकता है, Response.End()
लेकिन यह ASP.NET कोर में कैसे काम Response.End
करता है, जहां मौजूद नहीं है?
public class ExampleController : Controller
{
[HttpGet][Route("/example/main")]
public IActionResult Main()
{
this.HttpContext.Response.StatusCode = 418; // I'm a teapot
// How to end the request?
// I don't actually want to return a view but perhaps the next
// line is required anyway?
return View();
}
}
there is no dedicated result for 418
गंभीर लापता कार्यक्षमता यहाँ, Microsoft।