GetAppIconUri() private method

private GetAppIconUri ( ) : Uri
return System.Uri
Example #1
0
 /// <summary>
 /// Show a toast.
 /// </summary>
 /// <param name="title">Ex.: “Something Happened”</param>
 /// <param name="message">Ex.: “This and that. Without dot in the end”</param>
 /// <param name="click">Click action</param>
 public static void Show(string title, string message, Action click = null)
 {
     Show(title, message, AppIconService.GetAppIconUri(), click ?? _defaultAction);
 }