我通过HTTP.sys阅读了一些内容,我们可以自己托管asp.net 5应用程序。那是什么意思?
答案 0 :(得分:1)
if ([self conformsToProtocol:@protocol(ElectricCarProtocol)]) {
return self.batteryChargeRemaining; // you might need to cast the object here
}
return self.gasFuelRemaining; // idem
是HTTP.sys
。它是a part of IIS
您可以通过运行Windows HTTP Protocole stack
命令自行托管ASP.Net 5
应用程序。它将使用web
。
<强> project.json 强>
HTTP.sys
在控制台中运行自托管项目:
...
"commands": {
/* Change the port number when you are self hosting this application */
"web": "Microsoft.AspNet.Hosting --server Microsoft.AspNet.Server.WebListener --server.urls http://localhost:5000",
...
}