Kimono.KMessageBox.ShouldBeShownYesNo C# (CSharp) Method

ShouldBeShownYesNo() public static method

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