Quantcast
Channel: sshnet Issue Tracker Rss Feed
Viewing all articles
Browse latest Browse all 1026

Closed Issue: Thread-safe event handling [1551]

$
0
0
Consider rewriting this:

if (this.ErrorOccurred != null)
{
this.ErrorOccurred(this, e);
}

Into:

var handler = ErrorOccurred;
if (handler != null)
{
handler(this, e);
}
Comments: Fixed in 24900

Viewing all articles
Browse latest Browse all 1026

Trending Articles



<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>