2

当我使用 azure 缓存但不使用 HttpRuntime.Cache 时出现错误:

无法序列化类型“ System.Web.Services.Protocols.LogicalMethodInfo ”。考虑使用 DataContractAttribute 属性对其进行标记,并使用 DataMemberAttribute 属性标记您想要序列化的所有成员。如果该类型是一个集合,请考虑使用 CollectionDataContractAttribute 对其进行标记。有关其他支持的类型,请参阅 Microsoft .NET Framework 文档。

搜索后我注意到这篇文章说“HttpRuntime.Cache 根本不序列化数据” ASP.net HttpRuntime.Cache 示例代码
使用的默认序列化是什么:

protected void Page_Load(object sender, EventArgs e)
{
List<myclass> items = new List<myclass>();
MyClass item1 = new MyClass() { ID = 1 };
items.Add(item1);

HttpRuntime.Cache.Insert("test1", items); //working

DataCache cache = new DataCache("default"); 
cache.CreateRegion("reg");

cache.Put("test2", items, "reg");//error
}

}

public class MyClass
{
public MyClass()
{

Type myType = typeof(MyService);
MethodInfo myMethodInfo = myType.GetMethod("Add");
_log = new **LogicalMethodInfo**(myMethodInfo);
}
public int ID { get; set; }
public **LogicalMethodInfo** _log;
}

public class MyService
{
public int Add(int xValue, int yValue)
{
return (xValue + yValue);
}
}
4

1 回答 1

1

您收到该错误是因为System.Web.Services.Protocols.LogicalMethodInfo不可序列化。为了添加到 Azure 缓存中,对象必须被序列化并通过网络发送到缓存服务器。显然,不可序列化的对象无法做到这一点。HttpRuntime.Cache是内存中的数据存储。因为它在内存中,所以不需要序列化对象,因此不关心缓存的对象是否可序列化。

于 2013-01-15T15:32:53.030 回答