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 方法中調整臨界值參數值之前呼叫這個方法。