|
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
using System.Threading;
using System.Threading.Tasks;
using Microsoft.CodeAnalysis.Razor.Tooltip;
namespace Microsoft.CodeAnalysis.Razor.Completion;
internal abstract class CompletionItemResolver
{
public abstract Task<VSInternalCompletionItem?> ResolveAsync(
VSInternalCompletionItem item,
VSInternalCompletionList containingCompletionList,
ICompletionResolveContext originalRequestContext,
VSInternalClientCapabilities clientCapabilities,
IComponentAvailabilityService componentAvailabilityService,
CancellationToken cancellationToken);
}
|