File: SignatureHelp\Presentation\SignatureHelpPresenter.SignatureHelpSource.cs
Web Access
Project: src\src\EditorFeatures\Core.Wpf\Microsoft.CodeAnalysis.EditorFeatures.Wpf_a0rtafw3_wpftmp.csproj (Microsoft.CodeAnalysis.EditorFeatures.Wpf)
// 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.
 
#nullable disable
 
using System.Collections.Generic;
using Microsoft.CodeAnalysis.Editor.Shared.Extensions;
using Microsoft.CodeAnalysis.Editor.Shared.Utilities;
using Microsoft.VisualStudio.Language.Intellisense;
 
namespace Microsoft.CodeAnalysis.Editor.Implementation.IntelliSense.SignatureHelp.Presentation;
 
internal sealed partial class SignatureHelpPresenter
{
    private sealed class SignatureHelpSource(IThreadingContext threadingContext) : ISignatureHelpSource
    {
        public void AugmentSignatureHelpSession(ISignatureHelpSession session, IList<ISignature> signatures)
        {
            threadingContext.ThrowIfNotOnUIThread();
            if (!session.Properties.TryGetProperty<SignatureHelpPresenterSession>(s_augmentSessionKey, out var presenterSession))
            {
                return;
            }
 
            session.Properties.RemoveProperty(s_augmentSessionKey);
            presenterSession.AugmentSignatureHelpSession(signatures);
        }
 
        public ISignature GetBestMatch(ISignatureHelpSession session)
        {
            threadingContext.ThrowIfNotOnUIThread();
            return session.SelectedSignature;
        }
 
        public void Dispose()
        {
        }
    }
}