gpt4 book ai didi

c# - WebForms 等同于 MVC 的 "return Content()"?

转载 作者:太空宇宙 更新时间:2023-11-03 10:42:07 25 4
gpt4 key购买 nike

我正在尝试验证 Braintree's webhook notifications 的端点.他们向我发送了一个 GET 请求,其中包含我需要在其中一个函数中使用的参数。

我想我应该发送一个 POST 请求,但不确定正确的实现。与 MVC 的 return Content() 等效的 Web 表单是什么?

public class WebhooksController : Controller
{
public ActionResult Accept()
{
return Content(Constants.Gateway.WebhookNotification.Verify(Request.QueryString["bt_challenge"]));
}
}

最佳答案

不确定这是否是最好的方法,但您可以制作 generic handler .

public class MyHandler : IHttpHandler
{
public void ProcessRequest(HttpContext context)
{
// here you have access to context.Request and context.Response
}

public bool IsReusable
{
get { return false; }
}
}

关于c# - WebForms 等同于 MVC 的 "return Content()"?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24977322/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com