嘿,亲!知识可是无价之宝呢,但咱这精心整理的资料也耗费了不少心血呀。小小地破费一下,绝对物超所值哦!如有下载和支付问题,请联系我们QQ(微信同号):78630559
本次赞助数额为: 2 元微信扫码支付:2 元
请留下您的邮箱,我们将在2小时内将文件发到您的邮箱
wcf实例:以订票为例简单应用wcf程序
.
├── wcf
│ ├── WcfDemo1
│ │ ├── WcfDemo1
│ │ │ ├── App_Data
│ │ │ ├── IService1.cs
│ │ │ ├── Properties
│ │ │ │ └── AssemblyInfo.cs
│ │ │ ├── Service1.svc
│ │ │ ├── Service1.svc.cs
│ │ │ ├── WcfDemo1.csproj
│ │ │ ├── WcfDemo1.csproj.user
│ │ │ ├── Web.Debug.config
│ │ │ ├── Web.Release.config
│ │ │ ├── Web.config
│ │ │ ├── bin
│ │ │ │ ├── WcfDemo1.dll
│ │ │ │ ├── WcfDemo1.dll.config
│ │ │ │ └── WcfDemo1.pdb
│ │ │ └── obj
│ │ │ ├── Debug
│ │ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ │ │ ├── TempPE
│ │ │ │ ├── WcfDemo1.csproj.AssemblyReference.cache
│ │ │ │ ├── WcfDemo1.csproj.CoreCompileInputs.cache
│ │ │ │ └── WcfDemo1.csproj.FileListAbsolute.txt
│ │ │ └── Release
│ │ │ ├── WcfDemo1.csproj.CoreCompileInputs.cache
│ │ │ ├── WcfDemo1.csproj.FileListAbsolute.txt
│ │ │ ├── WcfDemo1.dll
│ │ │ └── WcfDemo1.pdb
│ │ ├── WcfDemo1.sln
│ │ └── WindowsFormsApp1
│ │ ├── App.config
│ │ ├── Form1.Designer.cs
│ │ ├── Form1.cs
│ │ ├── Form1.resx
│ │ ├── Program.cs
│ │ ├── Properties
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Resources.Designer.cs
│ │ │ ├── Resources.resx
│ │ │ ├── Settings.Designer.cs
│ │ │ └── Settings.settings
│ │ ├── WindowsFormsApp1.csproj
│ │ ├── WindowsFormsApp1.csproj.user
│ │ ├── bin
│ │ │ └── Debug
│ │ │ ├── WcfDemo1.dll
│ │ │ ├── WcfDemo1.dll.config
│ │ │ ├── WcfDemo1.pdb
│ │ │ ├── WindowsFormsApp1.exe
│ │ │ ├── WindowsFormsApp1.exe.config
│ │ │ └── WindowsFormsApp1.pdb
│ │ └── obj
│ │ └── Debug
│ │ ├── DesignTimeResolveAssemblyReferences.cache
│ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ ├── TempPE
│ │ ├── WindowsFormsApp1.Form1.resources
│ │ ├── WindowsFormsApp1.Properties.Resources.resources
│ │ ├── WindowsFormsApp1.csproj.AssemblyReference.cache
│ │ ├── WindowsFormsApp1.csproj.CopyComplete
│ │ ├── WindowsFormsApp1.csproj.CoreCompileInputs.cache
│ │ ├── WindowsFormsApp1.csproj.FileListAbsolute.txt
│ │ ├── WindowsFormsApp1.csproj.GenerateResource.cache
│ │ ├── WindowsFormsApp1.exe
│ │ └── WindowsFormsApp1.pdb
│ ├── Wcf服务端.zip
│ ├── WinFormswcf
│ │ ├── WinFormswcf
│ │ │ ├── App.config
│ │ │ ├── Connected Services
│ │ │ │ └── ServiceReference1
│ │ │ │ ├── Reference.cs
│ │ │ │ ├── Reference.svcmap
│ │ │ │ ├── Service1.wsdl
│ │ │ │ ├── configuration.svcinfo
│ │ │ │ ├── configuration91.svcinfo
│ │ │ │ ├── item.disco
│ │ │ │ ├── item.xsd
│ │ │ │ └── item1.xsd
│ │ │ ├── Form1.Designer.cs
│ │ │ ├── Form1.cs
│ │ │ ├── Form1.resx
│ │ │ ├── Program.cs
│ │ │ ├── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── WinFormswcf.csproj
│ │ │ ├── bin
│ │ │ │ ├── Debug
│ │ │ │ │ ├── WinFormswcf.exe
│ │ │ │ │ ├── WinFormswcf.exe.config
│ │ │ │ │ └── WinFormswcf.pdb
│ │ │ │ └── Release
│ │ │ └── obj
│ │ │ ├── Debug
│ │ │ │ ├── DesignTimeResolveAssemblyReferences.cache
│ │ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ │ │ ├── TempPE
│ │ │ │ │ └── Connected Services.ServiceReference1.Reference.cs.dll
│ │ │ │ ├── WinFormswcf.Form1.resources
│ │ │ │ ├── WinFormswcf.Properties.Resources.resources
│ │ │ │ ├── WinFormswcf.csproj.AssemblyReference.cache
│ │ │ │ ├── WinFormswcf.csproj.CoreCompileInputs.cache
│ │ │ │ ├── WinFormswcf.csproj.FileListAbsolute.txt
│ │ │ │ ├── WinFormswcf.csproj.GenerateResource.cache
│ │ │ │ ├── WinFormswcf.exe
│ │ │ │ └── WinFormswcf.pdb
│ │ │ └── Release
│ │ │ ├── WinFormswcf.Form1.resources
│ │ │ ├── WinFormswcf.Properties.Resources.resources
│ │ │ ├── WinFormswcf.csproj.CoreCompileInputs.cache
│ │ │ ├── WinFormswcf.csproj.FileListAbsolute.txt
│ │ │ └── WinFormswcf.csproj.GenerateResource.cache
│ │ └── WinFormswcf.sln
│ └── wcf客户端.zip
└── 好例子网_wcf.zip
29 directories, 92 files