Service contract
定义和实现服务协议。
[ServiceContract]
public interface ICalcService
{
[OperationContract]
void Add();
void Sub();
}
public class CalcService : ICalcService
{
public v...
Hello World
上一篇中我们直接使用默认创建的模板尝试了一下WCF。我们这里再手动写一下。
(友情提示:可以跳过。)
一、创建 Server
直接新建命令行程序。
Program.cs
这里需要添加引用System.ServiceModel。
using System;
using System.Collections.Generic;
using System...
Windows Service
一个Windows服务程序是在Windows操作系统下能完成特定功能的可执行的应用程序。
Windows服务程序虽然是可执行的,但是它不像一般的可执行文件通过双击就能开始运行了,它必须有特定的启动方式。这些启动方式包括了自动启动和手动启动两种。
Hello World
创建Windows Service项目
Create
【Visual C...
Socket
A network socket is an internal endpoint for sending or receiving data at a single node in a computer network.
TCP
一、 三次握手建立连接
请求端(通常称为客户)发送一个SYN段指明客户打算连接的服务器的端口,以及初始序号(ISN)。
...