Exemplo n.º 1
0
 public async Task <HttpResponseMessage> ProcessIncomingCallAsync()
 {
     return(await CallingConversation.SendAsync(this.Request, CallRequestType.IncomingCall));
 }
Exemplo n.º 2
0
 public async Task <HttpResponseMessage> ProcessCallingEventAsync()
 {
     return(await CallingConversation.SendAsync(this.Request, CallRequestType.CallingEvent));
 }
Exemplo n.º 3
0
 public async Task <IActionResult> ProcessIncomingCallAsync()
 {
     return(await CallingConversation.SendAsync(Request, CallRequestType.IncomingCall));
 }
 public async Task <HttpResponseMessage> ProcessIncomingCallAsync()
 {
     Trace.TraceInformation(DateTime.Now + " Call");
     return(await CallingConversation.SendAsync(this.Request, CallRequestType.IncomingCall));
 }
Exemplo n.º 5
0
 public async Task <IActionResult> ProcessCallingEventAsync()
 {
     return(await CallingConversation.SendAsync(Request, CallRequestType.CallingEvent));
 }