我想知道是否有人知道快速方式或者是否有人编写了一个反射工具来判断解决方案中的哪些对象未标记为可序列化。我正在将站点切换到StateServer,我需要将所有对象标记为可序列化。我不想错过任何一个。
另外,第二部分的枚举必须是可序列化的吗?
该网站是使用VS 2003构建的ASP.NET 1.1站点
答案 0 :(得分:2)
枚举需要可序列化。
为了找出不可序列化的内容,我确实对这些对象进行了单元测试,只需调用一个方法来知道它是否可序列化。此方法尝试序列化,如果失败,则对象不是......
public static Stream serialize<T>(T objectToSerialize)
{
MemoryStream mem = new MemoryStream();
BinaryFormatter b = new BinaryFormatter();
b.Serialize(mem, objectToSerialize);
return mem;
}
在你的unittest中你需要调用serialize(objectToCheck);如果不是可以选择的话,会有例外。
答案 1 :(得分:2)
枚举本质上是可序列化的。
我编写了这个帮助器来获取对象的属性,你可以在应用程序的顶部添加一行来调用以下代码:
var assemblies = GetTheAssembliesFromYourApp();
foreach (var assembly in assemblies)
{
var types = assembly.GetTypes ();
foreach (var type in types)
{
if (AttributeHelper.GetAttrbiute<Serializable> (type) == null)
{
// Log somewhere - this type isn't serialisable...
}
}
}
static class AttributeHelper
{
#region Static public methods
#region GetAttribute
static public T GetAttribute<T> (object obj)
where T : Attribute
{
if (obj == null)
throw new ArgumentNullException ("obj");
// If the object is a member info then we can use it, otherwise it's an instance of 'something' so get it's type...
var member = (obj is System.Reflection.MemberInfo) ? (System.Reflection.MemberInfo)obj : obj.GetType ();
return GetAttributeImpl<T> (member);
}
#endregion GetAttribute
#endregion Static public methods
#region Static methods
#region GetAttributeImpl
static T GetAttributeImpl<T> (System.Reflection.MemberInfo member)
where T : Attribute
{
var attribs = member.GetCustomAttributes (typeof (T), false);
if (attribs == null || attribs.Length == 0)
return null;
return attribs[0] as T;
}
#endregion GetAttributeImpl
#endregion Static methods
}