Beispiel #1
0
        private OpenIdClientInstance.UiLambdaSet GenerateUiLambdaSet(PackCntRuntimeOptions runtimeOptions = null)
        {
            var res = new OpenIdClientInstance.UiLambdaSet();

            if (runtimeOptions?.ShowMesssageBox != null)
            {
                res.MesssageBox = (content, text, title, buttons) =>
                                  runtimeOptions.ShowMesssageBox(content, text, title, buttons);
            }

            return(res);
        }