private static string GetUniqueGuid(NetworkTcpSession tcpSession, Guid fileId)
 {
     return(tcpSession.GetFlowID() + "\t" + fileId.ToString());
 }
 internal string GetSessionFileID(Guid fileId, NetworkTcpSession tcpSession)
 {
     return(tcpSession.GetFlowID() + "|" + fileId.ToString());
 }
 private static string GetUniqueMessageId(NetworkTcpSession tcpSession, ulong messageId)
 {
     return(tcpSession.GetFlowID() + "\t" + messageId.ToString());
 }