嘿,亲!知识可是无价之宝呢,但咱这精心整理的资料也耗费了不少心血呀。小小地破费一下,绝对物超所值哦!如有下载和支付问题,请联系我们QQ(微信同号):78630559
本次赞助数额为: 2 元微信扫码支付:2 元
请留下您的邮箱,我们将在2小时内将文件发到您的邮箱
webapi接口开发源码
.
├── FastHttpApi-master
│ ├── BeetleX.FastHttpApi.sln
│ ├── BeetleX.FastHttpApi.v11.suo
│ ├── Extend
│ │ ├── BeetleX.FastHttpApi.Admin
│ │ │ ├── AdminController.cs
│ │ │ ├── AdminController.js
│ │ │ ├── ApiInfo.cs
│ │ │ ├── ApiInfo.js
│ │ │ ├── BeetleX.FastHttpApi.Admin.csproj
│ │ │ ├── BeetleX.FastHttpApi.Admin.csproj.user
│ │ │ ├── FileManagerController.cs
│ │ │ ├── FileManagerController.js
│ │ │ └── views
│ │ │ └── _admin
│ │ │ ├── AdminController.js
│ │ │ ├── Connections.html
│ │ │ ├── FastHttpApi.js
│ │ │ ├── FileManager.html
│ │ │ ├── FileManagerController.js
│ │ │ ├── LogOutput.html
│ │ │ ├── Login.html
│ │ │ ├── ModuleLoader.js
│ │ │ ├── Monitor.js
│ │ │ ├── PublicModule.html
│ │ │ ├── ReadFileHandler.js
│ │ │ ├── api.html
│ │ │ ├── apiscript.html
│ │ │ ├── bootstrap-theme.css
│ │ │ ├── bootstrap.css
│ │ │ ├── bootstrap.js
│ │ │ ├── glyphicons-halflings-regular.ttf
│ │ │ ├── glyphicons-halflings-regular.woff
│ │ │ ├── glyphicons-halflings-regular.woff2
│ │ │ ├── index.html
│ │ │ ├── jquery.js
│ │ │ ├── md5.js
│ │ │ └── vue.js
│ │ ├── BeetleX.FastHttpApi.Hosting
│ │ │ ├── BeetleX.FastHttpApi.Hosting.csproj
│ │ │ └── FastHttpApiHosting.cs
│ │ └── BeetleX.FastHttpApi.SpanJson
│ │ ├── BeetleX.FastHttpApi.SpanJson.csproj
│ │ ├── BeetleX.FastHttpApi.SpanJson.csproj.user
│ │ └── SpanJsonResult.cs
│ ├── LICENSE
│ ├── PerformanceTest
│ │ ├── Beetlex_VS_AspCore_webapi
│ │ │ ├── AspCoreWebapi
│ │ │ │ ├── AspCoreWebapi.csproj
│ │ │ │ ├── AspCoreWebapi.csproj.user
│ │ │ │ ├── Controllers
│ │ │ │ │ └── HomeController.cs
│ │ │ │ ├── Program.cs
│ │ │ │ ├── Startup.cs
│ │ │ │ ├── appsettings.Development.json
│ │ │ │ └── appsettings.json
│ │ │ ├── BeetlexWebapi
│ │ │ │ ├── BeetlexWebapi.csproj
│ │ │ │ ├── BeetlexWebapi.csproj.user
│ │ │ │ └── Program.cs
│ │ │ └── Beetlex_VS_AspCore.sln
│ │ ├── FastHttpApiWeb
│ │ │ ├── App.config
│ │ │ ├── FastHttpApiWeb.csproj
│ │ │ ├── FastHttpApiWeb.csproj.user
│ │ │ ├── HttpConfig.json
│ │ │ └── Program.cs
│ │ ├── go
│ │ │ └── main.go
│ │ ├── netcore
│ │ │ ├── Program.cs
│ │ │ ├── Startup.cs
│ │ │ ├── netcore.csproj
│ │ │ └── netcore.csproj.user
│ │ └── netcore-mvc
│ │ ├── Controllers
│ │ │ └── ValuesController.cs
│ │ ├── Program.cs
│ │ ├── Startup.cs
│ │ ├── netcore-mvc.csproj
│ │ └── netcore-mvc.csproj.user
│ ├── README.md
│ ├── WebApi_json_vs_protobuf.zip
│ ├── _config.yml
│ ├── images
│ │ ├── 20190801.png
│ │ ├── Kestrel_get.png
│ │ ├── Kestrel_mvc_get.png
│ │ ├── Kestrel_mvc_post.png
│ │ ├── fasthttp_api_get.png
│ │ ├── fasthttp_api_get_kv.png
│ │ ├── fasthttp_api_post.png
│ │ ├── fasthttp_api_post_kv.png
│ │ └── fasthttp_get.png
│ └── src
│ ├── ActionContext.cs
│ ├── ActionFilterAttribute.cs
│ ├── ActionHandler.cs
│ ├── ActionHandlerFactory.cs
│ ├── ActionResult.cs
│ ├── ActionSettings.cs
│ ├── AuthMarkAttribute.cs
│ ├── BeetleX.FastHttpApi.csproj
│ ├── BeetleX.FastHttpApi.csproj.user
│ ├── Beetlex.FastHttpApi.pfx
│ ├── ContenType.cs
│ ├── ControllerAttribute.cs
│ ├── Cookies.cs
│ ├── Data
│ │ ├── DataContext.cs
│ │ ├── DataContextBinder.cs
│ │ ├── DataConvertAttribute.cs
│ │ ├── IDataContext.cs
│ │ ├── InvalidDataFilter.cs
│ │ └── NoDataConvertAttribute.cs
│ ├── EventArgs.cs
│ ├── FastHttpApi.js
│ ├── FileLog.cs
│ ├── GMTDate.cs
│ ├── Header.cs
│ ├── HeaderStringHelper.cs
│ ├── HttpApiServer.cs
│ ├── HttpConfig.json
│ ├── HttpOptions.cs
│ ├── HttpPacket.cs
│ ├── HttpParse.cs
│ ├── HttpRequest.cs
│ ├── HttpResponse.cs
│ ├── HttpToken.cs
│ ├── IActionResultHandler.cs
│ ├── IDataContext.cs
│ ├── IDataResponse.cs
│ ├── IHttpContext.cs
│ ├── IPLimit.cs
│ ├── IPv4Tables.cs
│ ├── IResult.cs
│ ├── LRUCached.cs
│ ├── ModuleManage.cs
│ ├── NextQueue.cs
│ ├── ObjectPool.cs
│ ├── OptionsAttribute.cs
│ ├── PostAttribute.cs
│ ├── PostFile.cs
│ ├── Properties
│ │ └── PublishProfiles
│ │ ├── FolderProfile.pubxml
│ │ └── FolderProfile.pubxml.user
│ ├── QueryString.cs
│ ├── Route
│ │ ├── RouteAttribute.cs
│ │ ├── RouteGroup.cs
│ │ ├── RouteMatchResult.cs
│ │ ├── RouteRewrite.cs
│ │ ├── RouteTemplateMatch.cs
│ │ └── UrlRoute.cs
│ ├── ServerController.cs
│ ├── ServerCounter.cs
│ ├── ServerStatusController.cs
│ ├── SessionControllerFactory.cs
│ ├── SkipFilterAttribute.cs
│ ├── StaticResurce
│ │ ├── EventFileResponseArgs.cs
│ │ ├── EventFindFileArgs.cs
│ │ ├── FileBlock.cs
│ │ ├── FileContentType.cs
│ │ ├── FileResource.cs
│ │ └── ResourceCenter.cs
│ ├── Utils.cs
│ ├── Validations
│ │ ├── IValidationOutputHandler.cs
│ │ ├── Regex.cs
│ │ ├── ValidationBase.cs
│ │ └── ValueRegion.cs
│ ├── VirtualFolder.cs
│ └── WebSockets
│ ├── DataFrame.cs
│ ├── DataPackeType.cs
│ ├── EventWebSocketReceive.cs
│ ├── IDataPacketSerializer.cs
│ ├── IWebSocketServer.cs
│ ├── WebSocketPacket.cs
│ ├── WebSocketServer.cs
│ └── WebSocketToken.cs
└── webapi接口开发.zip
26 directories, 159 files