OctoTorrent.Client.SeededPiece.SeededPiece C# (CSharp) Method

SeededPiece() public method

public SeededPiece ( PeerId peer, int index, int totalBlocks ) : System
peer PeerId
index int
totalBlocks int
return System
        public SeededPiece(PeerId peer, int index, int totalBlocks)
        {
            Index = index;
            Peer = peer;
            SeededAt = DateTime.Now;
            TotalBlocks = totalBlocks;
        }
SeededPiece