I would like my sales staff to click a button, which makes a phonecall and registers the length of the call.
Is it possible to monitor the length of a phonecall?
Thanks
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
No, the
PhoneCallTaskdoes not provide this kind of information. But you could register the current time just before the call starts and get the current time when the app resumes.However, this might be longer than the actual phone call when the user or phone decides to do something else in between.
EDIT
Apparently, after being corrected by @JaredBienz-MSFT and and testing it, the Show method of the PhoneCallTask is not blocking. So my ‘trick’ will not work.