4 implementations of ICustomDebugInformationProvider
Mono.Cecil (4)
Mono.Cecil.Cil\Symbols.cs (1)
272
public abstract class DebugInformation :
ICustomDebugInformationProvider
{
Mono.Cecil\MethodDefinition.cs (1)
20
public sealed class MethodDefinition : MethodReference, IMemberDefinition, ISecurityDeclarationProvider,
ICustomDebugInformationProvider
{
Mono.Cecil\ModuleDefinition.cs (1)
248
public sealed class ModuleDefinition : ModuleReference, ICustomAttributeProvider,
ICustomDebugInformationProvider
, IDisposable {
Mono.Cecil\TypeDefinition.cs (1)
19
public sealed class TypeDefinition : TypeReference, IMemberDefinition, ISecurityDeclarationProvider,
ICustomDebugInformationProvider
{
22 references to ICustomDebugInformationProvider
illink (1)
Linker\CustomSymbolWriter.cs (1)
118
public void Write(
ICustomDebugInformationProvider
provider) => _symbolWriter.Write(provider);
Mono.Cecil (17)
Mono.Cecil.Cil\PortablePdb.cs (4)
150
public Collection<CustomDebugInformation> Read (
ICustomDebugInformationProvider
provider)
231
public Collection<CustomDebugInformation> Read (
ICustomDebugInformationProvider
provider)
335
public void Write (
ICustomDebugInformationProvider
provider)
540
public void Write (
ICustomDebugInformationProvider
provider)
Mono.Cecil.Cil\Symbols.cs (4)
857
Collection<CustomDebugInformation> Read (
ICustomDebugInformationProvider
provider);
1120
void Write (
ICustomDebugInformationProvider
provider);
1231
this
ICustomDebugInformationProvider
self,
1248
this
ICustomDebugInformationProvider
self,
Mono.Cecil\AssemblyReader.cs (2)
3171
public bool HasCustomDebugInformation (
ICustomDebugInformationProvider
provider)
3182
public Collection<CustomDebugInformation> GetCustomDebugInformation (
ICustomDebugInformationProvider
provider)
Mono.Cecil\AssemblyWriter.cs (7)
2414
public void AddCustomDebugInformations (
ICustomDebugInformationProvider
provider)
2446
void AddStateMachineScopeDebugInformation (
ICustomDebugInformationProvider
provider, StateMachineScopeDebugInformation state_machine_scope)
2468
void AddAsyncMethodBodyDebugInformation (
ICustomDebugInformationProvider
provider, AsyncMethodBodyDebugInformation async_method)
2484
void AddEmbeddedSourceDebugInformation (
ICustomDebugInformationProvider
provider, EmbeddedSourceDebugInformation embedded_source)
2513
void AddSourceLinkDebugInformation (
ICustomDebugInformationProvider
provider, SourceLinkDebugInformation source_link)
2521
void AddCustomDebugInformation (
ICustomDebugInformationProvider
provider, CustomDebugInformation custom_info, SignatureWriter signature)
2526
void AddCustomDebugInformation (
ICustomDebugInformationProvider
provider, CustomDebugInformation custom_info, uint blob_index)
Mono.Cecil.Mdb (2)
Mono.Cecil.Mdb\MdbReader.cs (1)
189
public Collection<CustomDebugInformation> Read (
ICustomDebugInformationProvider
provider)
Mono.Cecil.Mdb\MdbWriter.cs (1)
176
public void Write (
ICustomDebugInformationProvider
provider)
Mono.Cecil.Pdb (2)
Mono.Cecil.Pdb\NativePdbReader.cs (1)
358
public Collection<CustomDebugInformation> Read (
ICustomDebugInformationProvider
provider)
Mono.Cecil.Pdb\NativePdbWriter.cs (1)
268
public void Write (
ICustomDebugInformationProvider
provider)