Share via


HostLanguageServices.GetRequiredService<TLanguageService> Method

Definition

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 throws InvalidOperationException.

public:
generic <typename TLanguageService>
 where TLanguageService : Microsoft::CodeAnalysis::Host::ILanguageService TLanguageService GetRequiredService();
public TLanguageService GetRequiredService<TLanguageService> () where TLanguageService : Microsoft.CodeAnalysis.Host.ILanguageService;
member this.GetRequiredService : unit -> 'LanguageService (requires 'LanguageService :> Microsoft.CodeAnalysis.Host.ILanguageService)
Public Function GetRequiredService(Of TLanguageService As ILanguageService) () As TLanguageService

Type Parameters

TLanguageService

Returns

TLanguageService

Applies to