资源简介
实例是一个控制台服务,实现客户端调用服务中的加减乘除方法的简单实例。包含服务和客户端
代码片段和文件信息
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.ServiceModel;
using System.ServiceModel.Description;
namespace WCFClient
{
class Program
{
static void Main(string[] args)
{
//创建客户端终结点
EndpointAddress epAddress = new EndpointAddress(“http://localhost:8000/ServiceModelSamples/Service/CalculatorService“);
ServiceReference1.ServiceClient client = new ServiceReference1.ServiceClient(new WSHttpBinding() epAddress);
//调用wcf服务端的方法
double value1 = 100.00d;
double value2 = 15.99d;
double result = client.Add(value1 value2);
//显示加方法调用结果
Console.WriteLine(“Add({0}{1})
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
目录 0 2019-03-13 11:40 WCFClient\
目录 0 2019-03-13 11:40 WCFClient\.vs\
目录 0 2019-03-13 11:40 WCFClient\.vs\WCFClient\
目录 0 2019-03-13 11:40 WCFClient\.vs\WCFClient\v15\
文件 33792 2019-03-13 14:26 WCFClient\.vs\WCFClient\v15\.suo
目录 0 2019-03-13 11:40 WCFClient\.vs\WCFClient\v15\Server\
目录 0 2019-03-13 11:40 WCFClient\.vs\WCFClient\v15\Server\sqlite3\
文件 0 2019-03-13 11:40 WCFClient\.vs\WCFClient\v15\Server\sqlite3\db.lock
文件 4096 2019-03-13 11:40 WCFClient\.vs\WCFClient\v15\Server\sqlite3\storage.ide
文件 32768 2019-03-13 11:40 WCFClient\.vs\WCFClient\v15\Server\sqlite3\storage.ide-shm
文件 2327832 2019-03-13 14:26 WCFClient\.vs\WCFClient\v15\Server\sqlite3\storage.ide-wal
目录 0 2019-03-13 13:25 WCFClient\WCFClient\
文件 1125 2019-03-13 11:40 WCFClient\WCFClient.sln
文件 933 2019-03-13 11:47 WCFClient\WCFClient\App.config
目录 0 2019-03-13 11:40 WCFClient\WCFClient\bin\
目录 0 2019-03-13 11:54 WCFClient\WCFClient\bin\Debug\
文件 11776 2019-03-13 13:25 WCFClient\WCFClient\bin\Debug\WCFClient.exe
文件 933 2019-03-13 11:47 WCFClient\WCFClient\bin\Debug\WCFClient.exe.config
文件 30208 2019-03-13 13:25 WCFClient\WCFClient\bin\Debug\WCFClient.pdb
目录 0 2019-03-13 11:46 WCFClient\WCFClient\Connected Services\
目录 0 2019-03-13 11:45 WCFClient\WCFClient\Connected Services\ServiceReference1\
文件 17099 2019-03-13 11:45 WCFClient\WCFClient\Connected Services\ServiceReference1\CalculatorService.wsdl
文件 1718 2019-03-13 11:45 WCFClient\WCFClient\Connected Services\ServiceReference1\configuration.svcinfo
文件 21406 2019-03-13 11:45 WCFClient\WCFClient\Connected Services\ServiceReference1\configuration91.svcinfo
文件 5174 2019-03-13 11:45 WCFClient\WCFClient\Connected Services\ServiceReference1\Reference.cs
文件 2435 2019-03-13 11:45 WCFClient\WCFClient\Connected Services\ServiceReference1\Reference.svcmap
文件 391 2019-03-13 11:45 WCFClient\WCFClient\Connected Services\ServiceReference1\Service.disco
文件 3783 2019-03-13 11:45 WCFClient\WCFClient\Connected Services\ServiceReference1\Service.wsdl
文件 2488 2019-03-13 11:45 WCFClient\WCFClient\Connected Services\ServiceReference1\Service.xsd
文件 2155 2019-03-13 11:45 WCFClient\WCFClient\Connected Services\ServiceReference1\Service1.xsd
目录 0 2019-03-13 11:46 WCFClient\WCFClient\Connected Services\ServiceReference2\
............此处省略71个文件信息
- 上一篇:C# wifi连接器(搜索wifi并密码连接)
- 下一篇:串口通信
相关资源
- C#联通网络宽带测试 拨号
- C#百度指数抓取方法(2012年版本已失
- C# 隐藏某个磁盘分区
- C# 读取并编辑window系统的右键菜单
- C#自定义屏保(不断滚动的文字)
- C#winform打印指定区域 -控件拖动 -设置
- C#使用Hook进行改键
- 提供C#调用系统API函数弹出或收起光驱
- 通过C#自带的头文件(类)获取Windo
- C#获取电脑CPU以及内存使用率
- pop3lib类库 +(这个不错) 附完整
- 利用uu云打码平台的lib实现的c#打码平
- tf-idf一种计算方法
- C# pop3 邮件接收程序
- C# 邮件群发示例 源码下载18952
- 动态抓取IPC#实现
- XXTEA算法的C#实现和JS实现,可以互相
- C# 飞行棋 游戏源码(面向对象入门)
- 基于WinPcap的C# ARP欺骗软件().rar
- C#网络应用编程 矩阵并行计算练习
- 猜数小游戏WCF网络编程技术(附服务
- 《C#版Ftp软件源码》
-
C# 播放铃声(AxWindowsMediaPla
yer)最新 - C# 把图片显示成椭圆形状
- C# 水平交错效果显示图像
- winform 浮雕效果的图像
- c# 底片效果显示图像就像旧式相机的
- 积木效果显示图像
- C# 隐形窗体 (没有边框,没有标题栏
- browerPhotoC#网页截图(不打开网页)
评论
共有 条评论