
.Net Core
奔跑吧牛宝宝
不断超越自己
展开
-
C# 请求Restful 兼容http和https
using System.IO;using System.Linq;using System.Net;using System.Text;using System.Threading.Tasks;using System.Net.Security;using System.Security.Cryptography.X509Certificates;namespace Test.NetCore.Communication{ public enum HttpVerb {.原创 2021-03-17 09:50:09 · 639 阅读 · 0 评论 -
.Net Core 3.1 Dispatcher.BeginInvoke 失效 无法更新UI
最近研究 .Net Core 3.1 WPF 开发发现在WPF中常用的Dispatcher.BeginInvoke 更新UI界面失效了线程也是同一个线程,太奇怪了这边提供一个解法 var scheduler = TaskScheduler.FromCurrentSynchronizationContext(); Task.Factory.StartNew(()=> {}).ContinueWith(r=> { ...原创 2021-03-11 19:25:01 · 880 阅读 · 0 评论