GC.CancelFullGCNotification 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
取消注册垃圾回收通知。
public:
static void CancelFullGCNotification();
public static void CancelFullGCNotification ();
[System.Security.SecurityCritical]
public static void CancelFullGCNotification ();
static member CancelFullGCNotification : unit -> unit
[<System.Security.SecurityCritical>]
static member CancelFullGCNotification : unit -> unit
Public Shared Sub CancelFullGCNotification ()
- 属性
例外
此成员在启用并发垃圾回收时不可用。 若要了解如何禁用并发垃圾回收,请参阅 <gcConcurrent> 运行时设置。
示例
以下示例取消垃圾回收注册。 此示例是针对 垃圾回收通知 主题提供的更大示例的一部分。
finalExit = true;
checkForNotify = false;
GC::CancelFullGCNotification();
finalExit = true;
checkForNotify = false;
GC.CancelFullGCNotification();
finalExit <- true
checkForNotify <- false
GC.CancelFullGCNotification()
finalExit = True
checkForNotify = False
GC.CancelFullGCNotification()
注解
此方法取消使用 RegisterForFullGCNotification 该方法注册的垃圾回收通知。 在对该方法的后续调用 RegisterForFullGCNotification 中调整阈值参数值之前,无需调用此方法。