2 types derived from EditAndContinueDebugInfoReader
Microsoft.CodeAnalysis.Features (2)
EditAndContinue\EditAndContinueDebugInfoReader.cs (2)
44private sealed class Native : EditAndContinueDebugInfoReader 122private sealed class Portable : EditAndContinueDebugInfoReader
12 references to EditAndContinueDebugInfoReader
Microsoft.CodeAnalysis.Features (12)
Debugging\DebugInformationReaderProvider.cs (5)
45public override EditAndContinueDebugInfoReader CreateEditAndContinueDebugInfoReader() 46=> EditAndContinueDebugInfoReader.Create(_pdbReaderProvider.GetMetadataReader()); 70public override EditAndContinueDebugInfoReader CreateEditAndContinueDebugInfoReader() 71=> EditAndContinueDebugInfoReader.Create(_symReader ?? throw new ObjectDisposedException(GetType().FullName), _version); 114public abstract EditAndContinueDebugInfoReader CreateEditAndContinueDebugInfoReader();
EditAndContinue\CommittedSolution.cs (2)
490var debugInfoReader = debugInfoReaderProvider.CreateEditAndContinueDebugInfoReader(); 518EditAndContinueDebugInfoReader debugInfoReader,
EditAndContinue\DebuggingSession.cs (1)
402var debugInfoReader = debugInfoReaderProvider.CreateEditAndContinueDebugInfoReader();
EditAndContinue\EditAndContinueDebugInfoReader.cs (4)
197/// Creates <see cref="EditAndContinueDebugInfoReader"/> backed by a given <see cref="ISymUnmanagedReader5"/>. 210public static unsafe EditAndContinueDebugInfoReader Create(ISymUnmanagedReader5 symReader, int version = 1) 236/// Creates <see cref="EditAndContinueDebugInfoReader"/> back by a given <see cref="MetadataReader"/>. 243public static unsafe EditAndContinueDebugInfoReader Create(MetadataReader pdbReader)