I'm trying to insert data in a peer, but it doesn't work.
I leave below the code that I'm using:
PeerNameRegistration pnReg = new PeerNameRegistration();
pnReg.PeerName = peerName;
pnReg.Start();
pnReg.Port = 80;
pnReg.Comment = txtName.Text;
pnReg.Data = System.Text.Encoding.UTF8.GetBytes("Data");
pnReg.Stop(); (?)
When I check the peers, I can see 4 nodes, but none of them has data or comment.