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
I want to use C# to request a language server for C/C++ like CQuery to get symbol information to use them in an UML model. Establishing a connection to CQuery, send a request runs pretty well. Now I have problems understanding how to receive a list of symbol information (SymbolInformation[]).
So far, I've seen a client example, hover_success, how to request the hover information.
How does it work for requests which return a list like 'workspace/symbol' of 'SymbolInformation[]'. The should then be a list.
From looking at the code I can imagine that it has something to do with 'SymbolInformationContainer'. Is there an example, suggestions, or some help available?