HostLanguageServices.GetService<TLanguageService> Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Gets a language specific service provided by the host identified by the service type. If the host does not provide the service, this method returns null.
public:
generic <typename TLanguageService>
where TLanguageService : Microsoft::CodeAnalysis::Host::ILanguageService abstract TLanguageService GetService();
public abstract TLanguageService GetService<TLanguageService> () where TLanguageService : Microsoft.CodeAnalysis.Host.ILanguageService;
public abstract TLanguageService? GetService<TLanguageService> () where TLanguageService : Microsoft.CodeAnalysis.Host.ILanguageService;
abstract member GetService : unit -> 'LanguageService (requires 'LanguageService :> Microsoft.CodeAnalysis.Host.ILanguageService)
Public MustOverride Function GetService(Of TLanguageService As ILanguageService) () As TLanguageService
Type Parameters
- TLanguageService
Returns
TLanguageService
Applies to
Collaborate with us on GitHub
The source for this content can be found on GitHub, where you can also create and review issues and pull requests. For more information, see our contributor guide.