Kimono.KMessageBox.ShouldBeShownYesNo C# (CSharp) Метод

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

name="dontShowAgainName" the name that identify the message box. If empty, true is always returned. name="result" is set to the result (Yes or No) that was chosen the last time the message box was shown. Only meaningful, if the message box should not be shown.
public static ShouldBeShownYesNo ( string dontShowAgainName, KMessageBox result ) : bool
dontShowAgainName string
result KMessageBox
Результат bool
        public static bool ShouldBeShownYesNo(string dontShowAgainName, KMessageBox.ButtonCode result)
        {
            return (bool) staticInterceptor.Invoke("shouldBeShownYesNo$$", "shouldBeShownYesNo(const QString&, KMessageBox::ButtonCode&)", typeof(bool), typeof(string), dontShowAgainName, typeof(KMessageBox.ButtonCode), result);
        }