//When the requested send to a Sink (client) is done static void Client_RequestDone(object sender, PeerRequestDoneEventArgs e) { Iso8583Message response = e.Request.ResponseMessage as Iso8583Message; //SourceNode sourceNode = e.Request.Payload as SourceNode; SinkNode sinkNode = e.Request.Payload as SinkNode; //continue coding }
//where (Client_RequestDone) and (Client_RequestCancelled) are methods you need to implement. //Their signatures are as follows: //When the requested send to a Sink (client) is done static void Client_RequestDone(object sender, PeerRequestDoneEventArgs e) { Iso8583Message response = e.Request.ResponseMessage as Iso8583Message; SourceNode sourceNode = e.Request.Payload as SourceNode; //continue coding }
static void Client_RequestDone(object sender, PeerRequestDoneEventArgs e) { // Console.WriteLine("Peer request done"); }
public static void Client_RequestDone(object sender, PeerRequestDoneEventArgs e) { Iso8583Message response = e.Request.RequestMessage as Iso8583Message; SourceNode source = e.Request.Payload as SourceNode; }
public static void Client_RequestDone(object sender, PeerRequestDoneEventArgs e) { Iso8583Message mess = e.Request.Payload as Iso8583Message; }