监控通话时长?
我希望我的销售人员单击一个按钮,即可拨打电话并记录通话时长。
是否可以监控通话时长?
谢谢
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
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
不,
PhoneCallTask
不提供此类信息。但是您可以在通话开始之前注册当前时间,并在应用程序恢复时获取当前时间。但是,当用户或电话决定在其间执行其他操作时,这可能比实际的电话呼叫要长。
编辑
显然,经过@JaredBienz-MSFT 的纠正并测试后,PhoneCallTask 的 Show 方法不会阻塞。所以我的‘诡计’不会起作用。
No, the
PhoneCallTask
does 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.