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

IFilePathToContentTypeMetadata.cs « ContentType « Impl « Core « src - github.com/microsoft/vs-editor-api.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: eb1521211bf27a61e4b92ecffc4e2b04f4d2a651 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
//
//  Copyright (c) Microsoft Corporation. All rights reserved.
//  Licensed under the MIT License. See License.txt in the project root for license information.
//
// This file contain implementations details that are subject to change without notice.
// Use at your own risk.
//

namespace Microsoft.VisualStudio.Utilities.Implementation
{
    public interface IFilePathToContentTypeMetadata : IOrderable
    {
        [System.ComponentModel.DefaultValue(null)]
        string FileExtension { get; }

        [System.ComponentModel.DefaultValue(null)]
        string FileName { get; }
    }
}