File: System.Activities.Presentation\System\Activities\Presentation\IIntegratedHelpService.cs
Project: ndp\cdf\src\NetFx40\Tools\System.Activities.Presentation.csproj (System.Activities.Presentation)
//----------------------------------------------------------------
// Copyright (c) Microsoft Corporation.  All rights reserved.
//----------------------------------------------------------------
 
namespace System.Activities.Presentation
{
    using System.ComponentModel.Design;
    using System.Diagnostics.CodeAnalysis;
 
    public interface IIntegratedHelpService
    {
        void AddContextAttribute(string name, string value, HelpKeywordType keywordType);
        void RemoveContextAttribute(string name, string value);
        void ShowHelpFromKeyword(string helpKeyword);
        [SuppressMessage("Microsoft.Design", "CA1054:UriParametersShouldNotBeStrings",
          Justification = "This is to keep consistent with IHelpService")]
        void ShowHelpFromUrl(string helpUrl);
    }
}