4 instantiations of DiagnosticMethodInfo
System.Private.CoreLib (2)
System\Delegate.cs (2)
292return new DiagnosticMethodInfo("Invoke", t.FullName, t.Module.Assembly.FullName); 302return new DiagnosticMethodInfo(mi.Name, declaringType.FullName, mi.Module.Assembly.FullName);
System.Private.StackTraceMetadata (2)
Internal\StackTraceMetadata\StackTraceMetadata.cs (2)
202return new DiagnosticMethodInfo( 217return new DiagnosticMethodInfo(
15 references to DiagnosticMethodInfo
Microsoft.Extensions.DependencyInjection.Abstractions (4)
ServiceDescriptor.cs (4)
268DiagnosticMethodInfo? dmi = DiagnosticMethodInfo.Create(KeyedImplementationFactory); 292DiagnosticMethodInfo? dmi = DiagnosticMethodInfo.Create(ImplementationFactory);
System.Diagnostics.StackTrace (1)
src\runtime\artifacts\obj\System.Diagnostics.StackTrace\Release\net11.0\System.Diagnostics.StackTrace.Forwards.cs (1)
3[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Diagnostics.DiagnosticMethodInfo))]
System.Private.CoreLib (8)
Internal\Runtime\Augments\StackTraceMetadataCallbacks.cs (1)
22public abstract DiagnosticMethodInfo TryGetDiagnosticMethodInfoFromStartAddress(IntPtr methodStartAddress);
src\runtime\src\libraries\System.Private.CoreLib\src\System\Threading\Tasks\LoggingExtensions.cs (2)
12DiagnosticMethodInfo? dmi = DiagnosticMethodInfo.Create(@delegate);
System\Delegate.cs (1)
277internal DiagnosticMethodInfo GetDiagnosticMethodInfo()
System\Diagnostics\DiagnosticMethodInfo.NativeAot.cs (2)
20public static DiagnosticMethodInfo? Create(Delegate @delegate) 26public static DiagnosticMethodInfo? Create(StackFrame frame)
System\Diagnostics\StackFrame.NativeAot.cs (2)
56[RequiresUnreferencedCode("Metadata for the method might be incomplete or removed. Consider using " + nameof(DiagnosticMethodInfo) + "." + nameof(DiagnosticMethodInfo.Create) + " instead")]
System.Private.StackTraceMetadata (2)
Internal\StackTraceMetadata\StackTraceMetadata.cs (2)
186public static unsafe DiagnosticMethodInfo? GetDiagnosticMethodInfoFromStartAddressIfAvailable(IntPtr methodStartAddress) 329public override DiagnosticMethodInfo TryGetDiagnosticMethodInfoFromStartAddress(nint methodStartAddress)