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

IErrorTag.cs « Tags « TextUI « Def « Text « src - github.com/microsoft/vs-editor-api.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 87164153f38d6ff2458cb90157313a6529dd582c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
//
//  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.Tagging
{
    /// <summary>
    /// Represents an error, which is used to place squiggle adornments on the view.
    /// </summary>
    public interface IErrorTag : ITag
    {
        /// <summary>
        /// Gets the type of error to use.
        /// </summary>
        string ErrorType { get; }

        /// <summary>
        /// Gets the content to use when displaying a tooltip for this error.
        /// This property may be null.
        /// </summary>
        object ToolTipContent { get; }
    }
}