public void NewImage(UserImageDTO image) { var action = new { type = "NEW_IMAGE", item = image }; session.Broadcast(action); }
public void NewForumThread(ThreadPostContentDTO forumThread) { var action = new { type = "NEW_FORUM_THREAD", item = forumThread }; session.Broadcast(action); }
public void NewImageComment(ImageCommentDTO comment) { var action = new { type = "NEW_IMAGE_COMMENT", item = comment }; session.Broadcast(action); }