0

我有一个域服务类,其中包含一个简单的 POCO 对象和一个包含 2 个变量 a 和 b 的类以及对其求和的方法。

public class DomainService1 : DomainService
    {
        abc obj = new abc(10, 20);
        public int sum1()
        {
            return (obj.a + obj.b); 

        }

    }
    public class abc {
        public int a { get; set; }
        public int b { get; set; }


        public abc(int c, int d)
        {
            a = c;
            d = b;

        }

        }
}

我想了解一下,如何在 silverlight 的 mainPage 上调用这个 wcf ria 服务?

4

1 回答 1

1

您可以通过以下方式在 silverlight 端调用您的服务:

DomainService1 domainService = new DomainService1();
domainService.sum1((op) => 
{
    //op.Value has the result
}, null);

或者

DomainService1 domainService = new DomainService1();
domainService.sum1(Sum1Completed, null);

(...)

void Sum1Completed(InvokeOperation<int> op)
{
    //op.Value has the result
}
于 2012-06-06T18:08:17.760 回答