Beispiel #1
0
 /// <summary>
 /// Make a mesage to store the given data.
 /// </summary>
 /// <param name="nodeID">The sender identificator</param>
 /// <param name="request">The StoreResponse message that originated this message</param>
 /// <param name="theData">The CompleteTag to store</param>
 /// <param name="originalPublication">The publication datetime</param>
 /// <param name="nodeEndpoint">The sender node's kademlia address</param>
 /// <param name="transportUri">The sender node's transport uri</param>
 public StoreData(ID nodeID, StoreResponse request, CompleteTag theData, DateTime originalPublication, Uri nodeEndpoint, Uri transportUri)
     : base(nodeID, request, nodeEndpoint)
 {
     this.data = theData;
     this.publication = originalPublication;
     this.transportUri = transportUri;
 }