File: External\IClientCapabilityProvider.cs
Web Access
Project: src\src\Tools\ExternalAccess\Xaml\Microsoft.CodeAnalysis.ExternalAccess.Xaml.csproj (Microsoft.CodeAnalysis.ExternalAccess.Xaml)
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
// See the LICENSE file in the project root for more information.
 
namespace Microsoft.CodeAnalysis.ExternalAccess.Xaml;
 
/// <summary>
/// Represents a provider for checking the support for dynamically registering capabilities.
/// </summary>
internal interface IClientCapabilityProvider
{
    /// <summary>
    /// Checks whether the client supports dynamically registering the capability for the given method name.
    /// </summary>
    bool IsDynamicRegistrationSupported(string methodName);
 
    bool SupportsMarkdownDocumentation { get; }
 
    bool SupportsCompletionListData { get; }
}