Welcome to mirror list, hosted at ThFree Co, Russian Federation.

IExpansionServiceProvider.cs « Snippet « Intellisense « Def « Language « Editor « src - github.com/microsoft/vs-editor-api.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: cead20d6c9ab5f580db18bb93900c8a0979a696f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
//
//  Copyright (c) Microsoft Corporation. All rights reserved.
//  Licensed under the MIT License. See License.txt in the project root for license information.
//

namespace Microsoft.VisualStudio.Text.Editor.Expansion
{
    public interface IExpansionServiceProvider
    {
        IExpansionService GetExpansionService(ITextView textView);
    }
}