Ejemplo n.º 1
0
 public void SendToClient(SuperWebSocket.WebSocketSession reciveSession, MedicalCrab.Core.Models.Message message, string value)
 {
     if (reciveSession == null)
     {
         return;
     }
     reciveSession.Send(value);
     //any more
 }
Ejemplo n.º 2
0
        public static string Object2Json(MedicalCrab.Core.Models.Message message)
        {
            string json = JsonConvert.SerializeObject(message);

            return(json);
        }