Hi, all
Using the phone task you can enable user to make dials through your app by code like that :
PhoneCallTask phoneCallTask = new PhoneCallTask();
phoneCallTask.PhoneNumber = "123-456-78";
phoneCallTask.DisplayName = "Tom Brown";
phoneCallTask.Show();
Which main that the app creator can put any number so maybe balance transfer request.
i know that the user will see the number which will be called , but if he don’t know that this is a service he may be cheated .
My question can i develop app that detect when any app installed on the same device try to use PHoneCallTask and make log for this by (App / number / Time)?
and if that is available can I control on these request and prevent any irregular numbers from being called (start with * for Example)?

Reply With Quote


