4 references to IsPortableCodeView
Microsoft.VisualStudio.LanguageServices (1)
PdbSourceDocument\AbstractSourceLinkService.cs (1)
31else if (entry.Type == DebugDirectoryEntryType.CodeView && entry.IsPortableCodeView)
Microsoft.VisualStudio.LanguageServices.DevKit (1)
src\VisualStudio\Core\Def\PdbSourceDocument\AbstractSourceLinkService.cs (1)
31else if (entry.Type == DebugDirectoryEntryType.CodeView && entry.IsPortableCodeView)
Roslyn.Test.PdbUtilities (1)
EditAndContinue\EditAndContinueTestUtilities.cs (1)
33var hasPortableDebugInformation = module.Module.PEReaderOpt.ReadDebugDirectory().Any(static entry => entry.IsPortableCodeView);
System.Reflection.Metadata (1)
System\Reflection\PortableExecutable\PEReader.cs (1)
739var codeViewEntry = ImmutableArrayExtensions.FirstOrDefault(entries, e => e.IsPortableCodeView);