I am developing an app and i am trying to share my app, in Windows Phone 8 Siverlight and Windows Phone 8.1 Silverlight, i used these codes:
ShareLinkTask shareLinkTask = new ShareLinkTask();
shareLinkTask.Title = "Code Samples";
shareLinkTask.LinkUri = new Uri("http://code.msdn.com/wpapps", UriKind.Absolute);
shareLinkTask.Message = "Here are some great code samples for Windows Phone.";
shareLinkTask.Show()
But in Windows Phone 8.1 using Windows Runtime, when i use these codes, it reports an error that this namespace doesn't exist. So, what namespace can replace ShareLinkTask on Windows Phone 8.1 using Windows Runtime ? Sorry for my bad english. Thank you !