For、Foreach、和Parallel.For等简单的速度检测

摘要: 控制台代码 直接复制即可 阅读全文
posted @ 2019-01-28 17:21 FFFYYY 阅读(143) 评论(0) 推荐(0) 编辑

core跨域问题

摘要: #region 跨域问题 app.UseCors(builder => builder .AllowAnyOrigin() .AllowAnyMethod() .AllowAnyHeader() .AllowCredentials()); #endregion 阅读全文
posted @ 2019-01-26 18:33 FFFYYY 阅读(559) 评论(0) 推荐(0) 编辑

Core统一日志处理

摘要: 新建一个Core的Web项目,然后创建相关文件等 添加一个处理错误的类库ErrorMiddleware 下面是该类库的代码 到这里标红的两个是需要注意的 RequestDelegate是一种委托类型,其全貌为public delegate Task RequestDelegate(HttpConte 阅读全文
posted @ 2019-01-26 18:32 FFFYYY 阅读(174) 评论(0) 推荐(0) 编辑

Core 接口发布报错

摘要: An error occurred while starting the application 提示:启动应用程序时发生错误 这个错误在Startup启动项里面 要找具体的报错位置 如下 这样就可以查看到具体是哪一行代码报错了 原创:https://www.cnblogs.com/itslives 阅读全文
posted @ 2019-01-26 15:39 FFFYYY 阅读(162) 评论(0) 推荐(0) 编辑

Core 读取配置文件

摘要: 新建控制台 public class AppSettings { public string ApiHost { get; } public AppSettings(IConfigurationSection section) { this.ApiHost = section.GetSection( 阅读全文
posted @ 2019-01-23 16:14 FFFYYY 阅读(561) 评论(0) 推荐(0) 编辑