monotorrent icon indicating copy to clipboard operation
monotorrent copied to clipboard

why StatsUpdateEventArgs is empty class?

Open friuns2 opened this issue 2 years ago • 0 comments

  engine.StatsUpdate += (sender, args) =>
        {
            //log to console
            var statsUpdateEventArgs = (StatsUpdateEventArgs)args;
            
            Console.WriteLine(statsUpdateEventArgs);
        };

I'm trying to log status but it returns nothing because in source its just


namespace MonoTorrent.Client
{
  public class StatsUpdateEventArgs : EventArgs
  {
  }
}

Do i do something wrong here?

friuns2 avatar Nov 12 '22 15:11 friuns2