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

PredefinedCodeLensDetailFieldNames.cs « DataModels « Remoting « CodeLens « Language « Def « Language « Editor « src - github.com/microsoft/vs-editor-api.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 921e831ecd7643e22d95259535b16cb0ad256d8c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
namespace Microsoft.VisualStudio.Language.CodeLens.Remoting
{
    public static class ReferenceEntryFieldNames
    {
        /// <summary>
        /// Name for file path field. Expect a string value.
        /// </summary>
        public const string FilePath = "filePath";
        /// <summary>
        /// Name for line number field. Expect an integer value and this is 0-indexed
        /// </summary>
        public const string LineNumber = "lineNumber";
        /// <summary>
        /// Name for colunm number field. Expect an integer value and this is 0-indexed.
        /// </summary>
        public const string ColumnNumber = "columnNumber";
        /// <summary>
        /// Name for the reference text field. Expect a string value.
        /// </summary>
        public const string ReferenceText = "referenceText";
        /// <summary>
        /// Name for the field of reference start position in the reference text. Expect an integer value.
        /// </summary>
        public const string ReferenceStart = "referenceStart";
        /// <summary>
        /// Name for the field of reference end position in the reference text. Expect an integer value.
        /// </summary>
        public const string ReferenceEnd = "referenceEnd";
        /// <summary>
        /// Name for the field of reference long description. This usually is the reference site with fully qualified reference name. Expect a string value.
        /// </summary>
        public const string ReferenceLongDescription = "referenceLongDescription";
        /// <summary>
        /// Name for the field of reference image. Expect a value of ImageId (or null if no image associated with this reference).
        /// </summary>
        public const string ReferenceImageId = "referenceImageId";
        /// <summary>
        /// Name for the field of the second line before reference text. Expect a string value.
        /// </summary>
        public const string TextBeforeReference2 = "textBeforeReference2";
        /// <summary>
        /// Name for the field of the first line before reference text. Expect a string value.
        /// </summary>
        public const string TextBeforeReference1 = "textBeforeReference1";
        /// <summary>
        /// Name for the field of the first line after reference text. Expect a string value.
        /// </summary>
        public const string TextAfterReference1 = "textAfterReference1";
        /// <summary>
        /// Name of the field of the second line after reference text. Expect a string value.
        /// </summary>
        public const string TextAfterReference2 = "textAfterReference2";
    }
}