Social

Link to your apps store page or allow the user to send emails or share data

Reference the library

C#
using CI.WSANative.Social;

Show the store description page for you app

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");

Show the store review page for you app

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");

Compose an email

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);

Share

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);