最近在项目过程中碰到了一些问题:
后台程序会动态生成一些类对象, Silverlight 接收到这些类对象后 进行使用。
在实际编程过程中碰到了一个棘手问题。
[OperationContract]
public object Test()
{
StringBuilder cs = new StringBuilder();
cs.AppendLine("namespace Runtime");
cs.AppendLine("{");
//cs.AppendLine("using System.Data;");
cs.AppendLine("using System.Collections.Generic;");
cs.AppendLine("using System.Reflection;");
cs.AppendLine("using System.ComponentModel;");
cs.AppendLine("using System.Runtime.Serialization;");
cs.AppendLine("using System;");
cs.AppendLine("[Serializable]");
cs.AppendLine("public class TestData ");
cs.AppendLine(" ");
cs.AppendLine("{public int IDDD{get;set;}}}");
CompilerParameters options = new CompilerParameters();
CodeDomProvider provider = CodeDomProvider.CreateProvider("CSharp");
options.ReferencedAssemblies.Add("system.dll");
options.ReferencedAssemblies.Add("system.Runtime.Serialization.dll");
Assembly assembly = Assembly.GetAssembly(base.GetType());
options.ReferencedAssemblies.Add(assembly.Location);
CompilerResults results = provider.CompileAssemblyFromSource(options, new string[] { cs.ToString() });
if (results.Errors.HasErrors)
{
throw new Exception(results.Errors[0].ErrorText);
}
object o = results.CompiledAssembly.CreateInstance("Runtime.TestData");
return o;
}
Silverlight 在访问Test 的方法时会出异常: Not Found Method 错误。
后来发现是由于 在动态编译的时候 是引用的 C#3.5 的System.dll,而在Silverlight中无法解析。
想到的方法是:引用Silverlight SDK的System.dll,动态编译时生成固定的DLL文件,然后在Silverlight中 下载下来进行反射调用。
虽然该方法可以成功,但有很大的弊端:需要对WEB目录设置可写权限,并且需要安装Silverlight SDK。
不知道高手们 有其他的好方法吗?
作者:Terry
出处:http://foolishfox.cnblogs.com/
本文版权归作者和博客园共有,欢迎转载,但未经作者同意必须保留此段声明,且在文章页面明显位置给出原文连接,否则保留追究法律责任的权利。