Reputation: 21
.NET core 3.0 when runtime get an System.PlatformNotSupported Exception 'Operation is not supported on this platform.' error
Also im tryed on ubuntu 19.04, same exception
Upvotes: 1
Views: 4059
Reputation: 21
NetCore 3.0 does not support BeginInvoke method
[-] NewMessages?.BeginInvoke(this, response, null, null);
[+] NewMessages?.Invoke(this, response);
Upvotes: 1