コード例 #1
0
 public Task Handle(DeleteTorrent notification, CancellationToken cancellationToken)
 {
     m_logger.LogInformation("Deleting torrent {torrent}", notification.Torrent.Name);
     return(m_client.DeleteTorrentAsync(notification.Torrent.Hash));
 }