views:

133

answers:

1

I am working on a Windows Phone 7 app and I want to give the option for the user to make a call. i.e How can I initiate a call when the user press a "call" button in my app? Looks like that API is not yet exposed.

+7  A: 

The API you want is PhoneCallTask Note that many of the external actions your app can initiate are in the Microsoft.Phone.Tasks namespace.

Skeets