ASP.NET Core
.NET Framework 中一套用于生成 Web 应用程序和 XML Web 服务的技术。
32 个问题
我有一个在 Azure 上使用 IIS 的 ASP.NET 项目。
在 Web.config 中,我有
<add key="Url" value="https://localhost:44313" />
并且 C# 代码 中有一个调用 WebRequest request = WebRequest.Create(sURL);
其中 sURL = “https://localhost:44313/api/User?email=myemail@myDomain.com”
有人可以分析上面的内容并告诉我是什么吗
“https://localhost:44313”
以及我在哪里可以找到
“https://localhost:44313/api/User?email=myemail@myDomain.com” 可能是 IIS 的端口号吗? 提前非常感谢
Note:此问题总结整理于: What is "localhost:44313"