• silverlight 反射调用WebService


    服务:

    1 [WebMethod]
    2 public string HelloWorld()
    3 {
    4     return "您好!";
    5 }

    silverlight中代码:

    01 namespace DynamicDemo
    02 {
    03     public partial class MainPage : UserControl
    04     {
    05         public MainPage()
    06         {
    07             InitializeComponent();
    08         }
    09  
    10         private void button1_Click(object sender, RoutedEventArgs e)
    11         {
    12             CallService("DynamicDemo.Server.RefServiceSoapClient""HelloWorld"new object[] { },new EventHandler<DynamicDemo.Server.HelloWorldCompletedEventArgs>(aa_HelloWorldCompleted));
    13         }
    14  
    15         void aa_HelloWorldCompleted(object sender, Server.HelloWorldCompletedEventArgs e)
    16         {
    17             MessageBox.Show("吹风说:" + e.Result);
    18         }
    19  
    20         public void CallService(string classstring, string methodstring,object[] paramstring,Delegate completedel)
    21         {
    22             Type tp = Type.GetType(classstring);
    23  
    24             EventInfo Event = tp.GetEvent(methodstring+"Completed");
    25  
    26             MethodInfo method = tp.GetMethod(methodstring+"Async"new Type[] { }, newParameterModifier[] { });
    27  
    28             var chuifeng = tp.Assembly.CreateInstance(classstring);
    29  
    30             Event.AddEventHandler(chuifeng, completedel);
    31  
    32             method.Invoke(chuifeng, paramstring);
    33  
    34         }
    35     }
    36 }
    Powered By D&J (URL:http://www.cnblogs.com/Areas/)
  • 相关阅读:
    《Google 软件测试之道》摘录
    UIRecorder环境搭建及录制实现
    网易《人性的哲学与科学》笔记
    网易《公正:该如何做是好?》笔记(不定时更新)
    自助饮料机实现
    网易《社会心理学》笔记(不定时更新)
    uiautomator +python 安卓UI自动化尝试
    doc
    doc
    doc
  • 原文地址:https://www.cnblogs.com/Areas/p/2169468.html
Copyright © 2020-2023  润新知