Kademlia.Messages.FindValue.FindValue C# (CSharp) Method

FindValue() public method

Make a new FindValue message.
public FindValue ( ID nodeID, string wantedKey, Uri nodeEndpoint ) : System
nodeID ID The sender identificator
wantedKey string The desired key by the sender
nodeEndpoint System.Uri The address of the sender
return System
        public FindValue(ID nodeID, string wantedKey, Uri nodeEndpoint)
            : base(nodeID, nodeEndpoint)
        {
            this.key = wantedKey;
        }
FindValue