嘿,亲!知识可是无价之宝呢,但咱这精心整理的资料也耗费了不少心血呀。小小地破费一下,绝对物超所值哦!如有下载和支付问题,请联系我们QQ(微信同号):78630559
本次赞助数额为: 2 元微信扫码支付:2 元
请留下您的邮箱,我们将在2小时内将文件发到您的邮箱
WCF心跳判断服务端及客户端是否掉线并实现重连接
├── Client
│ ├── App.config
│ ├── CallServer.cs
│ ├── Client.csproj
│ ├── Program.cs
│ ├── Properties
│ │ └── AssemblyInfo.cs
│ ├── bin
│ │ └── Debug
│ │ ├── Client.exe
│ │ ├── Client.exe.config
│ │ ├── Client.pdb
│ │ ├── Client.vshost.exe
│ │ ├── Client.vshost.exe.config
│ │ ├── Client.vshost.exe.manifest
│ │ ├── Interface.dll
│ │ └── Interface.pdb
│ └── obj
│ └── x86
│ └── Debug
│ ├── Client.csproj.FileListAbsolute.txt
│ ├── Client.csprojResolveAssemblyReference.cache
│ ├── Client.exe
│ ├── Client.pdb
│ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ └── TempPE
├── DuplexSolution.sln
├── DuplexSolution.suo
├── Interface
│ ├── ICallback.cs
│ ├── IPushMessage.cs
│ ├── Interface.csproj
│ ├── Properties
│ │ └── AssemblyInfo.cs
│ ├── bin
│ │ ├── Debug
│ │ │ ├── Interface.dll
│ │ │ └── Interface.pdb
│ │ └── Release
│ └── obj
│ └── Debug
│ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ ├── Interface.csproj.FileListAbsolute.txt
│ ├── Interface.dll
│ ├── Interface.pdb
│ └── TempPE
└── Service
├── App.config
├── Program.cs
├── Properties
│ └── AssemblyInfo.cs
├── PushMessageServer.cs
├── Service.csproj
├── WcfCleint.cs
├── bin
│ └── Debug
│ ├── Interface.dll
│ ├── Interface.pdb
│ ├── Service.exe
│ ├── Service.exe.config
│ ├── Service.pdb
│ ├── Service.vshost.exe
│ ├── Service.vshost.exe.config
│ └── Service.vshost.exe.manifest
└── obj
└── x86
└── Debug
├── DesignTimeResolveAssemblyReferencesInput.cache
├── Service.csproj.FileListAbsolute.txt
├── Service.csprojResolveAssemblyReference.cache
├── Service.exe
├── Service.pdb
└── TempPE
24 directories, 49 files