在.net项目中使用SilverLight库(dll)

时间:2012-08-31 13:02:00

标签: c# .net silverlight serialization runtime-error

我有一个SilverLight lib(dll),它实现了我需要在.net项目中使用的类。我完成了in this answer所描述的步骤,但我没有看到如何使用代理库来公开我需要的类。我在.net项目中添加了对代理的引用。 dll用于silverlight 5,我使用的是.net 4.0。

如果我只是添加dll作为参考,我可以使用SL对象,但我无法将它们序列化。

这是有问题的代码:

    static string SerializeWithDCS(object obj)
    {
        if (obj == null) throw new ArgumentNullException("obj");
        DataContractSerializer dcs = new DataContractSerializer(obj.GetType());
        MemoryStream ms = new MemoryStream();
        dcs.WriteObject(ms, obj);
        return Encoding.UTF8.GetString(ms.GetBuffer(), 0, (int)ms.Position);
    }

序列化失败:

System.IO.FileNotFoundException: Could not load file or assembly 'System.Runtime.Serialization, Versio
n=5.0.5.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e' or one of its dependencies. The system ca
nnot find the file specified.                                                                         
File name: 'System.Runtime.Serialization, Version=5.0.5.0, Culture=neutral, PublicKeyToken=7cec85d7bea
7798e'                                                                                                
   at System.ModuleHandle.ResolveType(RuntimeModule module, Int32 typeToken, IntPtr* typeInstArgs, Int
32 typeInstCount, IntPtr* methodInstArgs, Int32 methodInstCount, ObjectHandleOnStack type)            
   at System.ModuleHandle.ResolveTypeHandleInternal(RuntimeModule module, Int32 typeToken, RuntimeType
Handle[] typeInstantiationContext, RuntimeTypeHandle[] methodInstantiationContext)                    
   at System.Reflection.RuntimeModule.ResolveType(Int32 metadataToken, Type[] genericTypeArguments, Ty
pe[] genericMethodArguments)                                                                          
   at System.Reflection.CustomAttribute.FilterCustomAttributeRecord(CustomAttributeRecord caRecord, Me
tadataImport scope, Assembly& lastAptcaOkAssembly, RuntimeModule decoratedModule, MetadataToken decora
tedToken, RuntimeType attributeFilterType, Boolean mustBeInheritable, Object[] attributes, IList deriv
edAttributes, RuntimeType& attributeType, IRuntimeMethodInfo& ctor, Boolean& ctorHasParameters, Boolea
n& isVarArg)                                                                                          
   at System.Reflection.CustomAttribute.IsCustomAttributeDefined(RuntimeModule decoratedModule, Int32 
decoratedMetadataToken, RuntimeType attributeFilterType, Boolean mustBeInheritable)                   
   at System.Reflection.CustomAttribute.IsDefined(RuntimeType type, RuntimeType caType, Boolean inheri
t)                                                                                                    
   at System.RuntimeType.IsDefined(Type attributeType, Boolean inherit)                               
   at System.Runtime.Serialization.CollectionDataContract.IsCollectionOrTryCreate(Type type, Boolean t
ryCreate, DataContract& dataContract, Type& itemType, Boolean constructorRequired)                    
   at System.Runtime.Serialization.DataContract.DataContractCriticalHelper.CreateDataContract(Int32 id
, RuntimeTypeHandle typeHandle, Type type)                                                            
   at System.Runtime.Serialization.DataContract.DataContractCriticalHelper.GetDataContractSkipValidati
on(Int32 id, RuntimeTypeHandle typeHandle, Type type)    

1 个答案:

答案 0 :(得分:0)

使用反射编写自己的序列化。

这是我能想到的最好的解决方案 - 可能是一个更好的人提供更好的答案。

问题确实似乎是System.Runtime.Serialization的属性,它们在.NET和Silverlight之间有所不同。在与安德斯·古斯塔夫森有关的问题中谈到了这一点。

我很困惑为什么我不能让它发挥作用。

我尝试创建一个AppDomain并将所有必要的程序集加载到其中:

  1. 测试dll冒充第三方程序集,
  2. 将执行序列化的Silverlight包装程序集
  3. 所有Silverlight 5核心程序集和
  4. System.Runtime.Serialization的Silverlight 5变体。
  5. 然后我调用了包装器程序集中的代码来调用序列化 - 我仍然得到了异常。

    这令人费解 - 也许我只是做错了什么。

    如果有更多知识渊博的人对此有所说法,我会非常感兴趣。

    在任何情况下, 都可以编写自定义序列化程序,我认为这样可以解决问题。