gpt4 book ai didi

c# - 'System.Int32' 类型的对象无法转换为 'System.Web.Security.Cryptography.Purpose' 类型

转载 作者:太空狗 更新时间:2023-10-29 17:35:06 25 4
gpt4 key购买 nike

每当我尝试构建时,我现在都会收到此错误。我刚刚安装了 Visual Studio 2012 和 .Net 4.5,但这个项目仍在 2010 上。

这是我遇到问题的代码行:

private static MethodInfo _encode;
public static string Encode(CookieProtection cookieProtection, byte[] buf, int count)
{
return (string)_encode.Invoke(null, new object[] { cookieProtection, buf, count });
}

我收到一个 ArgumentException was unhandled by user code错误说,"Object of type 'System.Int32' cannot be converted to type 'System.Web.Security.Cryptography.Purpose'"我的开发环境没有任何变化,我的同事也没有遇到同样的问题,但他们也没有 VS2012。

我找到了 an article关于 Sitecore 有这个错误,但这是我看到它弹出的唯一地方。

他们说,“这是因为在 .NET 4.5 中,System.Web 中有一些新的命名空间”

他们的解决方案是:

  • 如果安装了 VS11,请将其卸载
  • 卸载 .NET 4.5
  • 重新安装 .NET 4

这似乎是一个荒谬的解决方案,因为 4.5 和 4 不能在同一台机器上。

在我尝试卸载并重新安装一堆东西之前,有谁知道可能导致此问题的原因以及更好的解决方案吗?

评论还说试试:</setting name="login.rememberlastloggedinusername" value="false" >但我也不想那样做。

最佳答案

正如@hvd 所暗示的,此代码使用反射来调用 Microsoft 在 .NET 4.5 中更改的内部方法。

幸运的是 .NET 4.0 引入了 System.Web.Security.MachineKey公开课Encode()Decode()方法完成与 CookieProtectionHelper 中的内部方法基本相同的事情。请注意,使用 CookieProtectionHelper.Encode() 加密的 cookie 将无法使用 MachineKey.Decode() 解密。

另请注意,在 .NET 4.5 中,这些方法已弃用,取而代之的是 Protect()Unprotect() .

关于c# - 'System.Int32' 类型的对象无法转换为 'System.Web.Security.Cryptography.Purpose' 类型,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11831655/

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