Show / Hide Table of Contents

Class ScrapeResponse

Inheritance
System.Object
ScrapeResponse
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: MonoTorrent.Client.Tracker
Assembly: MonoTorrent.dll
Syntax
public class ScrapeResponse

Constructors

ScrapeResponse(Int32, Int32, Int32)

Declaration
public ScrapeResponse(int complete, int downloaded, int incomplete)
Parameters
Type Name Description
System.Int32 complete
System.Int32 downloaded
System.Int32 incomplete

Properties

Complete

The number of active peers which have completed downloading. Updated after a successful Scrape. Defaults to 0.

Declaration
public int Complete { get; }
Property Value
Type Description
System.Int32

Downloaded

The number of peers that have ever completed downloading. Updated after a successful Scrape. Defaults to 0.

Declaration
public int Downloaded { get; }
Property Value
Type Description
System.Int32

Incomplete

The number of active peers which have not completed downloading. Updated after a successul Scrape. Defaults to 0.

Declaration
public int Incomplete { get; }
Property Value
Type Description
System.Int32
In This Article
Back to top Generated by DocFX