2 implementations of IsLiveShareHost
Microsoft.VisualStudio.LanguageServices.Razor (1)
LspEditorFeatureDetector.cs (1)
54public bool IsLiveShareHost()
Microsoft.VisualStudio.LanguageServices.Razor.UnitTests (1)
Cohost\CohostEndpointTest.cs (1)
174public bool IsLiveShareHost() => throw new NotImplementedException();
2 references to IsLiveShareHost
Microsoft.VisualStudio.LanguageServices.Razor (1)
VisualStudioLanguageServerFeatureOptions.cs (1)
35private bool IsCodespacesOrLiveshare => _lspEditorFeatureDetector.IsRemoteClient() || _lspEditorFeatureDetector.IsLiveShareHost();
Microsoft.VisualStudio.LanguageServices.Razor.UnitTests (1)
LspEditorFeatureDetectorTest.cs (1)
87var result = featureDetector.IsLiveShareHost();