资源简介
利用WCF实现文件传送,主要注意MessageContract的使用
本示例的主要功能 就是 client.exe通过wcf 将本机的 sample.docx文件传输到 server.exe端
亲测通过了
代码片段和文件信息
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.ServiceModel;
using StreamServiceSln;
using System.IO;
namespace Client
{
class Program
{
static void Main(string[] args)
{
using (SProxy p = new SProxy())
{
string strPath = System.IO.Path.GetDirectoryName(new Uri(typeof(Program).Assembly.Codebase).LocalPath) + “\\“ + “sample.docx“;
//strPath =@“E:\sample.docx“;
using (FileStream instream = new FileStream(strPath FileMode.Open))
{
p.Upload(instream “sample.docx“);
}
}
Console.WriteLine(“OK“);
Console.ReadKey();
}
}
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
目录 0 2016-06-24 22:01 Client\
文件 942 2016-06-05 22:28 Client\App.config
目录 0 2016-06-05 20:39 Client\bin\
目录 0 2016-06-24 22:01 Client\bin\Debug\
文件 5632 2016-06-24 22:01 Client\bin\Debug\Client.exe
文件 942 2016-06-05 22:28 Client\bin\Debug\Client.exe.config
文件 15872 2016-06-24 22:01 Client\bin\Debug\Client.pdb
文件 22688 2016-06-24 18:04 Client\bin\Debug\Client.vshost.exe
文件 942 2016-06-05 22:28 Client\bin\Debug\Client.vshost.exe.config
文件 490 2015-10-30 15:19 Client\bin\Debug\Client.vshost.exe.manifest
文件 2724746 2016-06-24 22:01 Client\bin\Debug\sample.docx
文件 6656 2016-06-24 22:01 Client\bin\Debug\StreamServiceSln.dll
文件 19968 2016-06-24 22:01 Client\bin\Debug\StreamServiceSln.pdb
文件 2955 2016-06-24 22:01 Client\Client.csproj
目录 0 2016-06-05 20:39 Client\obj\
目录 0 2016-06-24 22:01 Client\obj\Debug\
文件 1718 2016-06-24 22:01 Client\obj\Debug\Client.csproj.FileListAbsolute.txt
文件 7441 2016-06-24 22:01 Client\obj\Debug\Client.csprojResolveAssemblyReference.cache
文件 5632 2016-06-24 22:01 Client\obj\Debug\Client.exe
文件 15872 2016-06-24 22:01 Client\obj\Debug\Client.pdb
文件 6949 2016-06-24 22:01 Client\obj\Debug\DesignTimeResolveAssemblyReferencesInput.cache
目录 0 2016-06-05 20:39 Client\obj\Debug\TempPE\
文件 1117 2016-06-24 21:59 Client\Program.cs
目录 0 2016-06-05 20:39 Client\Properties\
文件 1320 2016-06-05 20:39 Client\Properties\AssemblyInfo.cs
文件 2724746 2016-06-24 22:01 Client\sample.docx
目录 0 2016-06-05 22:28 Server\
文件 1592 2016-06-05 22:28 Server\App.config
目录 0 2016-06-05 20:49 Server\bin\
目录 0 2016-06-24 22:05 Server\bin\Debug\
文件 5120 2016-06-24 22:01 Server\bin\Debug\Server.exe
............此处省略60个文件信息
- 上一篇:微信公众号支付接口
- 下一篇:asp.net 银联支付
相关资源
- C#高级编程第10版英文原版
- ASP.NET MVC5考试_管理系统源码
- c#入门经典 第七版 中文版 非扫描版
- .netc#新手菜鸟mvc5的仓库管理系统 so
- dc竞赛房租处理数据
- 基恩士PLC通讯.rar
- C# NPOI生成word插入图片和表格
- C#程序设计基础C#程序设计及应用教程
- 深入.NET平台和C#编程
- .net 美萍超市管理系统源码C#
- 第二代Kinect WPF开发从入门到精通资料
- WinForm GeckoFx33 Demo JS与C#互交 窗口浏览
- 《ASP.NET程序设计项目教程》周虎,王
- [精通ASP.NET.MVC5英文原版
- Focas V4.0 带说明
- 计算机图形学 三维模型处理算法初步
- C# KTV 点歌系统,C#项目源码带数据库
- C#实验--A.1 视频动态绘制练习.
- c#实现动态规划法——求解矩阵连乘问
- c#winform中完美代替WebBrowser最新的控件
- 最新 Ext甘特图控件 + Ext日程控件 破解
- C#高级编程第9版:C#5.0 & .NET 4.5.1 par
- gmap离线地图执行文件
- ASP.NET WebAPI+mvc4.0+EasyUI快速开发框架
- Illustrated C# 2010 C# 4.0图解教程
- Codejock Xtreme Suite Pro ActiveX 15.3.1 零售版
- C# WINFORM框架源碼
- C# WinForm实践开发教程清晰版
- 3D打印机上位机源码Reprap Host 是C#写的
- C#设计模式+源码JamesW.Cooper.zip
评论
共有 条评论