Exemplo n.º 1
0
 private async Task ExecuteShareCommand(Article article)
 {
     await share.RequestAsync(new ShareTextRequest
     {
         Uri   = article.Url,
         Title = article.Title
     });
 }
Exemplo n.º 2
0
 public Task ShareText(string title, string body)
 {
     return(_share.RequestAsync(text: body, title: title));
 }
Exemplo n.º 3
0
 public static Task RequestAsync(this IShare share, string text, string title) =>
 share.RequestAsync(new ShareTextRequest(text, title));