“响应”的等效词是什么? VB.NET 中的 ASP 方法?

发布于 2024-10-07 07:23:03 字数 283 浏览 2 评论 0原文

我正在尝试在我的桌面应用程序中实现 oAuth 身份验证。在我在互联网上找到的代码示例中,如下所示。我猜这是 ASP.Net 代码,但我在我的项目中使用 VB.Net。问题是我不知道 VB.Net 中 Request 的等效项是什么。

    If Request("oauth_token") Is Nothing Then
        MsgBox("Nothing")
    Else
        MsgBox("Something")
    End If

I am trying to implement oAuth authentication in my desktop application. In a code example I found over the internet is like below. I guess it is ASP.Net code but I'm using VB.Net for my project. The problem is I don't know what is equivalent for Request in VB.Net.

    If Request("oauth_token") Is Nothing Then
        MsgBox("Nothing")
    Else
        MsgBox("Something")
    End If

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

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

发布评论

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

评论(1

夏末的微笑 2024-10-14 07:23:03

Request 和 Response 都是 VB 和 C# 中的对象:

http://msdn.microsoft.com/en-us/library/ms524716(v=VS.90).aspx

然而,尚不清楚您指的是哪一个;响应还是请求?

Both Request and Response are objects in VB as well as C#:

http://msdn.microsoft.com/en-us/library/ms524716(v=VS.90).aspx

It's unclear which one you're referring to however; Response or Request?

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