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)
43public override EditAndContinueDebugInfoReader CreateEditAndContinueDebugInfoReader() 44=> EditAndContinueDebugInfoReader.Create(_pdbReaderProvider.GetMetadataReader()); 68public override EditAndContinueDebugInfoReader CreateEditAndContinueDebugInfoReader() 69=> EditAndContinueDebugInfoReader.Create(_symReader ?? throw new ObjectDisposedException(GetType().FullName), _version); 105public abstract EditAndContinueDebugInfoReader CreateEditAndContinueDebugInfoReader();
EditAndContinue\CommittedSolution.cs (2)
490var debugInfoReader = debugInfoReaderProvider.CreateEditAndContinueDebugInfoReader(); 518EditAndContinueDebugInfoReader debugInfoReader,
EditAndContinue\DebuggingSession.cs (1)
399var 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)