2 types derived from AbstractExportLspServiceAttribute
Microsoft.CodeAnalysis.LanguageServer.Protocol (2)
LspServices\ExportLspServiceFactoryAttribute.cs (1)
18internal class ExportLspServiceFactoryAttribute : AbstractExportLspServiceAttribute
LspServices\ExportStatelessLspServiceAttribute.cs (1)
18internal class ExportStatelessLspServiceAttribute : AbstractExportLspServiceAttribute
7 references to AbstractExportLspServiceAttribute
Microsoft.CodeAnalysis.LanguageServer.Protocol (7)
LspServices\LspServiceMetadataView.cs (7)
30var typeName = (string)metadata[nameof(AbstractExportLspServiceAttribute.TypeName)]; 31var assemblyName = (string)metadata[nameof(AbstractExportLspServiceAttribute.AssemblyName)]; 32var codeBase = (string?)metadata[nameof(AbstractExportLspServiceAttribute.CodeBase)]; 35var interfaceNames = (string[])metadata[nameof(AbstractExportLspServiceAttribute.InterfaceNames)]; 38ServerKind = (WellKnownLspServerKinds)metadata[nameof(AbstractExportLspServiceAttribute.ServerKind)]; 39IsStateless = (bool)metadata[nameof(AbstractExportLspServiceAttribute.IsStateless)]; 41var methodHandlerData = (string[]?)metadata[nameof(AbstractExportLspServiceAttribute.MethodHandlerData)];