Beispiel #1
0
 public void CandidateVue([FromBody] RtcViewModel model)
 {
     NotificationFactory.SendNotificationFromFirebaseCloud(null, model.Candidate, "candidate");
 }
Beispiel #2
0
 public async Task CandidateAndroid([FromBody] RtcViewModel model)
 {
     await _hubContext.Clients.All.SendAsync("Candidate", model.IceCandidate);
 }
Beispiel #3
0
 public void DescriptionVue([FromBody] RtcViewModel model)
 {
     NotificationFactory.SendNotificationFromFirebaseCloud(null, model.Sdp, "sdp");
 }
Beispiel #4
0
 public async Task DescriptionAndroid([FromBody] RtcViewModel model)
 {
     await _hubContext.Clients.All.SendAsync("Sdp", model.Desc);
 }