Universal.Torrent.Client.PeerConnections.PeerId.IsUnderUploadLimit C# (CSharp) Method

IsUnderUploadLimit() private method

Compares the actual upload rate with the upload rate that we are supposed to be limiting them to (UploadRateForRecip)
private IsUnderUploadLimit ( ) : bool
return bool
        internal bool IsUnderUploadLimit()
        {
            return _uploadRateForRecip > Monitor.UploadSpeed;
        }