当我使用 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);
}
}