[runtime] Fix corlib out of date error with disabled COM
[mono.git] / mcs / class / referencesource / System.Activities.Presentation / System.Activities.Presentation / System / Activities / Presentation / IIntegratedHelpService.cs
1 //----------------------------------------------------------------
2 // Copyright (c) Microsoft Corporation.  All rights reserved.
3 //----------------------------------------------------------------
4
5 namespace System.Activities.Presentation
6 {
7     using System.ComponentModel.Design;
8     using System.Diagnostics.CodeAnalysis;
9
10     public interface IIntegratedHelpService
11     {
12         void AddContextAttribute(string name, string value, HelpKeywordType keywordType);
13         void RemoveContextAttribute(string name, string value);
14         void ShowHelpFromKeyword(string helpKeyword);
15         [SuppressMessage("Microsoft.Design", "CA1054:UriParametersShouldNotBeStrings",
16           Justification = "This is to keep consistent with IHelpService")]
17         void ShowHelpFromUrl(string helpUrl);
18     }
19 }