Exemple #1
0
        protected void Add()
        {
            decimal      a            = 10;
            decimal      b            = 20;
            string       url          = System.Configuration.ConfigurationManager.AppSettings["WCFAddress"];
            ServiceProxy serviceProxy = new ServiceProxy(url);

            Response.Write(serviceProxy.Add(a, b));
        }