문제

How to use PhoneCallTask to dial a Service Number with # and ***** in it

I'm using Nokia Lumia 520 Windows 8 after the confirmation the error message appears

                PhoneCallTask call = new PhoneCallTask();
                call.PhoneNumber = "*100#";
                call.DisplayName = "Fund";
                call.Show();

this number is to check my phone fund

도움이 되었습니까?

해결책

No, that is not possible. The only way to start a call is using PhoneCallTask but that doesn't support service codes as you already found out.

Note* This functionality is only available to mobile operator apps.

다른 팁

When you "dial" a number like that it is not a normal phone number and it is not to be handled by the "make phone call" part of the phone, but rather the part that handles USSD (as you have correctly tagged this question). Thus without knowing the API you are using, you should instead look for something like PhoneUSSDTask to use instead of PhoneCallTask.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top