日韩性视频-久久久蜜桃-www中文字幕-在线中文字幕av-亚洲欧美一区二区三区四区-撸久久-香蕉视频一区-久久无码精品丰满人妻-国产高潮av-激情福利社-日韩av网址大全-国产精品久久999-日本五十路在线-性欧美在线-久久99精品波多结衣一区-男女午夜免费视频-黑人极品ⅴideos精品欧美棵-人人妻人人澡人人爽精品欧美一区-日韩一区在线看-欧美a级在线免费观看

歡迎訪問 生活随笔!

生活随笔

當前位置: 首頁 >

webapi------宿主程序

發布時間:2024/1/17 33 豆豆
生活随笔 收集整理的這篇文章主要介紹了 webapi------宿主程序 小編覺得挺不錯的,現在分享給大家,幫大家做個參考.

業務場景:

公司的容器程序需要給前端暴露接口但是代碼里面又不想寫webapi項目工程就用到了宿主可以達到webapi的效果

1、owin實現

2、其他實現

?測試實現如下

1、新建一個控制臺程序

2、新建一個Controller文件并繼承ApiController

using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Web.Http;namespace ConsoleApplication1 {public class BlahController : ApiController{[HttpGet]public string Date(){return DateTime.Today.ToString("yyyy/MM/dd");}} }

3、實現調用

3.1實現調用一

using System; using System.Collections.Generic; using System.Linq; using System.Threading.Tasks; using System.Web.Http; using System.Web.Http.SelfHost;namespace ConsoleApplication1 {class Program{ static void Main(string[] args){ #region http://localhost:9001/Blah/Date//指定URLvar config = new HttpSelfHostConfiguration("http://localhost:9001");//設定路由config.Routes.MapHttpRoute("API", "{controller}/{action}/{id}", new { id = RouteParameter.Optional });using (var httpServer = new HttpSelfHostServer(config)){//OpenAsync()屬非同步呼叫,加上Wait()則等待開啟完成才往下執行 httpServer.OpenAsync().Wait();Console.WriteLine("Web API host started...");string line = null;do{line = Console.ReadLine();}while (line != "exit");//結束鏈接 httpServer.CloseAsync().Wait();}#endregion}} }

3.2實現調用二

using System; using System.Collections.Generic; using System.Linq; using System.Threading.Tasks; using System.Web.Http; using System.Web.Http.SelfHost;namespace ConsoleApplication1 {class Program{ static void Main(string[] args){#region http://localhost:9001/api/Blah/DateHttpSelfHostConfiguration config = new HttpSelfHostConfiguration("http://localhost:9001");config.Routes.MapHttpRoute(name: "API",routeTemplate: "api/{controller}/{id}",defaults: new { id = RouteParameter.Optional });using (HttpSelfHostServer server = new HttpSelfHostServer(config)){server.OpenAsync().Wait();Console.WriteLine("Web API is started now");Console.ReadLine();}#endregion}} }

?

轉載于:https://www.cnblogs.com/macT/p/11183539.html

創作挑戰賽新人創作獎勵來咯,堅持創作打卡瓜分現金大獎

總結

以上是生活随笔為你收集整理的webapi------宿主程序的全部內容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網站內容還不錯,歡迎將生活随笔推薦給好友。