1 implementation of MethodName
Microsoft.CodeAnalysis.LanguageServer.Protocol (1)
src\LanguageServer\Microsoft.CommonLanguageServerProtocol.Framework\QueueItem.cs (1)
44public string MethodName { get; }
7 references to MethodName
Microsoft.CodeAnalysis.LanguageServer.Protocol (7)
Handler\RequestContextFactory.cs (3)
29if (clientCapabilities is null && queueItem.MethodName != Methods.InitializeName) 58throw new NotImplementedException($"TextDocumentIdentifier in an unrecognized type for method: {queueItem.MethodName}"); 80queueItem.MethodName,
src\LanguageServer\Microsoft.CommonLanguageServerProtocol.Framework\RequestExecutionQueue.cs (4)
249var didGetLanguage = _languageServer.TryGetLanguageForRequest(work.MethodName, work.SerializedRequest, out var language); 259var message = $"Failed to get language for {work.MethodName}"; 413var handlersForMethod = _handlerInfoMap[work.MethodName]; 420throw new InvalidOperationException($"Missing default or language handler for {work.MethodName} and language {language}");