File tree Expand file tree Collapse file tree 1 file changed +27
-0
lines changed
src/PowerShellEditorServices.Protocol/LanguageServer Expand file tree Collapse file tree 1 file changed +27
-0
lines changed Original file line number Diff line number Diff line change 1+ //
2+ // Copyright (c) Microsoft. All rights reserved.
3+ // Licensed under the MIT license. See LICENSE file in the project root for full license information.
4+ //
5+
6+ using Microsoft . PowerShell . EditorServices . Protocol . MessageProtocol ;
7+
8+ namespace Microsoft . PowerShell . EditorServices . Protocol . LanguageServer
9+ {
10+ class CommentHelpRequest
11+ {
12+ public static readonly RequestType < CommentHelpRequestParams , CommentHelpRequestResult , object , object > Type
13+ = RequestType < CommentHelpRequestParams , CommentHelpRequestResult , object , object > . Create ( "powershell/getCommentHelp" ) ;
14+ }
15+
16+ public class CommentHelpRequestResult
17+ {
18+ public string [ ] content ;
19+ }
20+
21+ public class CommentHelpRequestParams
22+ {
23+ public string DocumentUri { get ; set ; }
24+ public Position TriggerPosition { get ; set ; }
25+ }
26+ }
27+
You can’t perform that action at this time.
0 commit comments