Exemple #1
0
        public async Task <PluginPageComponent> GetPage(string pluginKey, string pageKey)
        {
            await PageLock.WaitAsync();

            var page = _pluginResolver.GetPage(pluginKey, pageKey);

            PageLock.Release();

            return(page);
        }