13 references to GCNotificationStatus
mscorlib (1)
src\runtime\src\libraries\shims\mscorlib\ref\mscorlib.cs (1)
245[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.GCNotificationStatus))]
netstandard (1)
netstandard.cs (1)
813[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.GCNotificationStatus))]
System.Private.CoreLib (10)
src\runtime\src\libraries\System.Private.CoreLib\src\System\GC.cs (2)
16public static GCNotificationStatus WaitForFullGCApproach(TimeSpan timeout) 25public static GCNotificationStatus WaitForFullGCComplete(TimeSpan timeout)
System\GC.NativeAot.cs (8)
237public static GCNotificationStatus WaitForFullGCApproach() 239return (GCNotificationStatus)RuntimeImports.RhWaitForFullGCApproach(-1); 248public static GCNotificationStatus WaitForFullGCApproach(int millisecondsTimeout) 252return (GCNotificationStatus)RuntimeImports.RhWaitForFullGCApproach(millisecondsTimeout); 260public static GCNotificationStatus WaitForFullGCComplete() 262return (GCNotificationStatus)RuntimeImports.RhWaitForFullGCComplete(-1); 271public static GCNotificationStatus WaitForFullGCComplete(int millisecondsTimeout) 275return (GCNotificationStatus)RuntimeImports.RhWaitForFullGCComplete(millisecondsTimeout);
System.Runtime (1)
src\runtime\artifacts\obj\System.Runtime\Release\net11.0\System.Runtime.Forwards.cs (1)
216[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.GCNotificationStatus))]