2

我已经在阳光下尝试了所有方法来访问 AppSettings,但我无法让它工作。

我有一个需要访问网络 AppSettings 的类库。我检查过,没有 要导入的“System.Collections.Specialized.NameValueCollection” 。

有人有什么想法吗?

using System;
using System.Collections.Generic;
using System.Configuration;
using System.Linq;
using System.Net.Http;
using System.Text;
using System.Threading.Tasks;
using System.Web;
using System.Web.Configuration;

public static class httpresponsebase_setoauthfromcookie
{
    public static void SetOauthFromCookie(this HttpResponseBase response, string verify,
                                          string token, string tokenSecret,
                                          string userName,
                                          bool isTwitter)
    {


        string pas =  WebConfigurationManager.AppSettings["cryptpass"],
               crypt = ((verify.Length > 3 ? (verify + ":") : "twit") + token + ":" + tokenSecret).Encrypt(pas);
        //
        var cookie = new HttpCookie(userName + (isTwitter ? "twitter" : "linkedin"), HttpServerUtility.UrlTokenEncode(Convert.FromBase64String(crypt)));
        cookie.Expires = DateTime.Now.AddDays(1);
        response.Cookies.Add(cookie);
    }}

在此处输入图像描述

4

1 回答 1

3

我添加了对 System 4.0 的引用并修复了所有问题。

于 2013-08-12T18:59:54.410 回答