AcManager.Controls.Helpers.Toast.Show C# (CSharp) Метод

Show() публичный статический Метод

Show a toast.
public static Show ( string title, string message, System.Action click = null ) : void
title string Ex.: “Something Happened”
message string Ex.: “This and that. Without dot in the end”
click System.Action Click action
Результат void
        public static void Show(string title, string message, Action click = null) {
            Show(title, message, AppIconService.GetAppIconUri(), click ?? _defaultAction);
        }

Same methods

Toast::Show ( string title, string message, [ icon, System.Action click = null ) : void