File: MessageInterception\IInterceptMethodMetadata.cs
Web Access
Project: src\src\Razor\src\Razor\src\Microsoft.VisualStudio.LanguageServer.ContainedLanguage\Microsoft.VisualStudio.LanguageServer.ContainedLanguage.csproj (Microsoft.VisualStudio.LanguageServer.ContainedLanguage)
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
 
using System.Collections.Generic;
 
namespace Microsoft.VisualStudio.LanguageServer.ContainedLanguage.MessageInterception;
 
internal interface IInterceptMethodMetadata
{
    // this must match the name from InterceptMethodAttribute
    IEnumerable<string> InterceptMethods { get; }
 
    // this must match the name from ContentTypeAttribute
    IEnumerable<string> ContentTypes { get; }
}