HostLanguageServices.GetRequiredService<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 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
Collaborer avec nous sur GitHub
La source de ce contenu se trouve sur GitHub, où vous pouvez également créer et examiner les problèmes et les demandes de tirage. Pour plus d’informations, consultez notre guide du contributeur.