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
Zusammenarbeit auf GitHub
Die Quelle für diesen Inhalt finden Sie auf GitHub, wo Sie auch Issues und Pull Requests erstellen und überprüfen können. Weitere Informationen finden Sie in unserem Leitfaden für Mitwirkende.