You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/LSP.Client/LanguageClient.cs
+9-4
Original file line number
Diff line number
Diff line change
@@ -13,6 +13,7 @@ namespace LSP.Client
13
13
usingDispatcher;
14
14
usingHandlers;
15
15
usingLogging;
16
+
usingNewtonsoft.Json.Linq;
16
17
usingProcesses;
17
18
usingProtocol;
18
19
@@ -211,18 +212,21 @@ public Task HasShutdown
211
212
/// <param name="workspaceRoot">
212
213
/// The workspace root.
213
214
/// </param>
215
+
/// <param name="initializationOptions">
216
+
/// An optional <see cref="Object"/> representing additional options to send to the server.
217
+
/// </param>
214
218
/// <param name="cancellationToken">
215
219
/// An optional <see cref="CancellationToken"/> that can be used to cancel the operation.
216
220
/// </param>
217
221
/// <returns>
218
222
/// A <see cref="Task"/> representing initialisation.
219
223
/// </returns>
220
224
/// <exception cref="InvalidOperationException">
221
-
/// <see cref="Initialize(string, CancellationToken)"/> has already been called.
225
+
/// <see cref="Initialize(string, object, CancellationToken)"/> has already been called.
222
226
///
223
-
/// <see cref="Initialize(string, CancellationToken)"/> can only be called once per <see cref="LanguageClient"/>; if you have called <see cref="Shutdown"/>, you will need to use a new <see cref="LanguageClient"/>.
227
+
/// <see cref="Initialize(string, object, CancellationToken)"/> can only be called once per <see cref="LanguageClient"/>; if you have called <see cref="Shutdown"/>, you will need to use a new <see cref="LanguageClient"/>.
0 commit comments