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