Exemple #1
0
        public static void ShowHelpFromPage(ExchangePage page)
        {
            string helpUrlFromPage = ExchangeHelpService.GetHelpUrlFromPage(page);

            ExchangeHelpService.ShowHelpFromUrl(page, helpUrlFromPage);
        }
Exemple #2
0
 private static void ShowHelpFromUrl(string helpUrl)
 {
     ExchangeHelpService.ShowHelpFromUrl(null, helpUrl);
 }
Exemple #3
0
        public static void ShowHelpFromHelpTopicId(Control control, string helpTopicId)
        {
            string helpUrlForTopic = ExchangeHelpService.GetHelpUrlForTopic(helpTopicId);

            ExchangeHelpService.ShowHelpFromUrl(control, helpUrlForTopic);
        }