File: FindUsages\IFindUsagesContext.cs
Web Access
Project: ..\..\..\src\Features\Core\Portable\Microsoft.CodeAnalysis.Features.csproj (Microsoft.CodeAnalysis.Features)
// 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.
 
using System;
using System.Threading;
using System.Threading.Tasks;
using Microsoft.CodeAnalysis.Shared.Utilities;
 
namespace Microsoft.CodeAnalysis.FindUsages
{
    internal interface IFindUsagesContext
    {
        /// <summary>
        /// Used for clients that are finding usages to push information about how far along they
        /// are in their search.
        /// </summary>
        IStreamingProgressTracker ProgressTracker { get; }
 
        /// <summary>
        /// Get <see cref="FindUsagesOptions"/> for specified language.
        /// </summary>
        ValueTask<FindUsagesOptions> GetOptionsAsync(string language, CancellationToken cancellationToken);
 
        /// <summary>
        /// Report a failure message to be displayed to the user.  This will be reported if the find operation returns
        /// no results.
        /// </summary>
        ValueTask ReportMessageAsync(string message, CancellationToken cancellationToken);
 
        /// <summary>
        /// Report a informational message to be displayed to the user.  This may appear to the user in the results
        /// UI in some fashion (for example: in an info-bar).
        /// </summary>
        ValueTask ReportInformationalMessageAsync(string message, CancellationToken cancellationToken);
 
        /// <summary>
        /// Set the title of the window that results are displayed in.
        /// </summary>
        ValueTask SetSearchTitleAsync(string title, CancellationToken cancellationToken);
 
        ValueTask OnDefinitionFoundAsync(DefinitionItem definition, CancellationToken cancellationToken);
        ValueTask OnReferenceFoundAsync(SourceReferenceItem reference, CancellationToken cancellationToken);
    }
}