| File: ILegacyFeedCapabilityResource.cs | Web Access |
| Project: NuGet.Protocol.csproj (NuGet.Protocol) |
// Copyright (c) .NET Foundation. All rights reserved. // Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading; using System.Threading.Tasks; using NuGet.Common; namespace NuGet.Protocol.Core.Types { public interface ILegacyFeedCapabilityResource { Task<bool> SupportsIsAbsoluteLatestVersionAsync(ILogger log, CancellationToken token); Task<bool> SupportsSearchAsync(ILogger log, CancellationToken token); } }