iSun
iSun

Reputation: 21

System.PlatformNotSupportedException: 'Operation is not supported on this platform.'

.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

Answers (1)

iSun
iSun

Reputation: 21

NetCore 3.0 does not support BeginInvoke method

[-] NewMessages?.BeginInvoke(this, response, null, null);

[+] NewMessages?.Invoke(this, response);

Upvotes: 1

Related Questions