Link to your apps store page or allow the user to send emails or share data
C#using CI.WSANative.Social;
Your apps id can be found on Windows Dev Center under Your App -> App Management -> App Identity -> use the the last part of URL for Windows 10
C#WSANativeSocial.ShowAppStoreDescriptionPage("id");
Your apps id can be found on Windows Dev Center under Your App -> App Management -> App Identity -> use the the last part of URL for Windows 10
C#WSANativeSocial.ShowAppStoreReviewPage("id");
Allows the user to compose an email and prepopulates the to field, subject field, message body and attachment - attachment arguments do not need to be specified
C#WSANativeSocial.ComposeEmail("[email protected]", "A Subject", "A message", "Attachment.png", attachmentData);
Launches the native share dialog which allows the user to share content using another app
Currently supports string for text, byte[] for a picture and Uri for a link
C#WSANativeSocial.Share<ContentType>("title", "description", content);