嘿,亲!知识可是无价之宝呢,但咱这精心整理的资料也耗费了不少心血呀。小小地破费一下,绝对物超所值哦!如有下载和支付问题,请联系我们QQ(微信同号):78630559
本次赞助数额为: 2 元微信扫码支付:2 元
请留下您的邮箱,我们将在2小时内将文件发到您的邮箱
WinForms托管WebApi
【源码目录】
WebApiHostingOld
├── WebApiHosting
│ ├── App.config
│ ├── ConfigureForm.Designer.cs
│ ├── ConfigureForm.cs
│ ├── ConfigureForm.resx
│ ├── Controllers
│ │ └── HomeController.cs
│ ├── MainForm.Designer.cs
│ ├── MainForm.cs
│ ├── MainForm.resx
│ ├── Models
│ │ ├── Data.cs
│ │ └── DataRecord.cs
│ ├── Program.cs
│ ├── Properties
│ │ ├── AssemblyInfo.cs
│ │ ├── Resources.Designer.cs
│ │ ├── Resources.resx
│ │ ├── Settings.Designer.cs
│ │ └── Settings.settings
│ ├── Services
│ │ └── HttpService.cs
│ ├── View.ico
│ ├── WebApiHosting.csproj
│ ├── WebApiHosting.csproj.user
│ ├── bin
│ │ ├── Debug
│ │ │ ├── Newtonsoft.Json.dll
│ │ │ ├── Newtonsoft.Json.xml
│ │ │ ├── System.Net.Http.Formatting.dll
│ │ │ ├── System.Net.Http.Formatting.xml
│ │ │ ├── System.Web.Http.SelfHost.dll
│ │ │ ├── System.Web.Http.SelfHost.xml
│ │ │ ├── System.Web.Http.dll
│ │ │ ├── System.Web.Http.xml
│ │ │ ├── WebApiHosting.exe
│ │ │ ├── WebApiHosting.exe.config
│ │ │ └── WebApiHosting.pdb
│ │ └── Release
│ ├── obj
│ │ └── Debug
│ │ ├── DesignTimeResolveAssemblyReferences.cache
│ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ ├── TempPE
│ │ ├── WebApiHosting.ConfigureForm.resources
│ │ ├── WebApiHosting.MainForm.resources
│ │ ├── WebApiHosting.Properties.Resources.resources
│ │ ├── WebApiHosting.csproj.CopyComplete
│ │ ├── WebApiHosting.csproj.CoreCompileInputs.cache
│ │ ├── WebApiHosting.csproj.FileListAbsolute.txt
│ │ ├── WebApiHosting.csproj.GenerateResource.cache
│ │ ├── WebApiHosting.exe
│ │ └── WebApiHosting.pdb
│ └── packages.config
├── WebApiHosting.sln
└── packages
├── Microsoft.AspNet.WebApi.Client.5.2.7
│ ├── Microsoft.AspNet.WebApi.Client.5.2.7.nupkg
│ └── lib
│ ├── net45
│ │ ├── System.Net.Http.Formatting.dll
│ │ └── System.Net.Http.Formatting.xml
│ ├── netstandard2.0
│ │ ├── System.Net.Http.Formatting.dll
│ │ └── System.Net.Http.Formatting.xml
│ └── portable-wp8 netcore45 net45 wp81 wpa81
│ ├── System.Net.Http.Formatting.dll
│ └── System.Net.Http.Formatting.xml
├── Microsoft.AspNet.WebApi.Core.5.2.7
│ ├── Content
│ │ └── web.config.transform
│ ├── Microsoft.AspNet.WebApi.Core.5.2.7.nupkg
│ └── lib
│ └── net45
│ ├── System.Web.Http.dll
│ └── System.Web.Http.xml
├── Microsoft.AspNet.WebApi.SelfHost.5.2.7
│ ├── Microsoft.AspNet.WebApi.SelfHost.5.2.7.nupkg
│ └── lib
│ └── net45
│ ├── System.Web.Http.SelfHost.dll
│ └── System.Web.Http.SelfHost.xml
└── Newtonsoft.Json.6.0.4
├── Newtonsoft.Json.6.0.4.nupkg
├── lib
│ ├── net20
│ │ ├── Newtonsoft.Json.dll
│ │ └── Newtonsoft.Json.xml
│ ├── net35
│ │ ├── Newtonsoft.Json.dll
│ │ └── Newtonsoft.Json.xml
│ ├── net40
│ │ ├── Newtonsoft.Json.dll
│ │ └── Newtonsoft.Json.xml
│ ├── net45
│ │ ├── Newtonsoft.Json.dll
│ │ └── Newtonsoft.Json.xml
│ ├── netcore45
│ │ ├── Newtonsoft.Json.dll
│ │ └── Newtonsoft.Json.xml
│ ├── portable-net40 sl5 wp80 win8 wpa81
│ │ ├── Newtonsoft.Json.dll
│ │ └── Newtonsoft.Json.xml
│ └── portable-net45 wp80 win8 wpa81
│ ├── Newtonsoft.Json.dll
│ └── Newtonsoft.Json.xml
└── tools
└── install.ps1
34 directories, 74 files