ReadOnly 属性请求作为 System.Web.HttpRequest 在此上下文中无法访问,因为它是 Friend

发布于 2024-10-11 04:41:57 字数 457 浏览 3 评论 0原文

我需要读取 ashx 处理程序的上下文值。

Public Sub ProcessRequest(ByVal context As HttpContext) Implements IHttpHandler.ProcessRequest
        Dim Resp As System.Web.HttpResponse = context.Response
        Dim dd = Resp.Request... ' HERE COMES THE ERROR
    End Sub

问题是当我尝试读取位于 dd.Request.Response.Request.Form 的值时出现以下错误

作为 System.Web.HttpRequest 的只读属性请求在此上下文中无法访问,因为它是 Friend

那么我在这里做错了什么?

I need to read the values of the context of an ashx handler.

Public Sub ProcessRequest(ByVal context As HttpContext) Implements IHttpHandler.ProcessRequest
        Dim Resp As System.Web.HttpResponse = context.Response
        Dim dd = Resp.Request... ' HERE COMES THE ERROR
    End Sub

The problem is that I get the following error when I try to read the values located at dd.Request.Response.Request.Form

ReadOnly Property Request As System.Web.HttpRequest is not accessible in this context because it is Friend

So what am I doing wrong here?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

清风夜微凉 2024-10-18 04:41:57

您不应该这样做吗:

Dim dd = context.Request 'Access the http request from the context instead of the response

您使用响应来获取请求是否有原因?

HTH。

Shouldn't you do:

Dim dd = context.Request 'Access the http request from the context instead of the response

Is there a reason why you are using the response to get the request?

HTH.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文