if (weakDelegate.IsAlive)
{
weakDelegate.Invoke(sender, e);
}
else
{
lock (_syncRoot)
{
_handlers.Remove(weakDelegate);
}
}
\Tweetinvi.Core\Events\WeakEvent.csline 64
not too sure what this code is doing, but it is ..IsAlive == false, so the handler is removed. Not sure why it is not alive though