Kimono.KMessageBox.SaveDontShowAgainYesNo C# (CSharp) Method

SaveDontShowAgainYesNo() public static method

Save the fact that the yes/no message box should not be shown again. name="dontShowAgainName" the name that identify the message box. If empty, this method does nothing. name="result" the value (Yes or No) that should be used as the result for the message box.
public static SaveDontShowAgainYesNo ( string dontShowAgainName, KMessageBox result ) : void
dontShowAgainName string
result KMessageBox
return void
        public static void SaveDontShowAgainYesNo(string dontShowAgainName, KMessageBox.ButtonCode result)
        {
            staticInterceptor.Invoke("saveDontShowAgainYesNo$$", "saveDontShowAgainYesNo(const QString&, KMessageBox::ButtonCode)", typeof(void), typeof(string), dontShowAgainName, typeof(KMessageBox.ButtonCode), result);
        }