Click to Rate and Give Feedback
MSDN
MSDN Library
.NET Development
.NET Framework 3.5
System Namespace
GC Class
GC Methods
 CancelFullGCNotification Method
Collapse All/Expand All Collapse All
This page is specific to
Microsoft Visual Studio 2008/.NET Framework 3.5

Other versions are also available for the following:
.NET Framework Class Library
GC..::.CancelFullGCNotification Method

Updated: July 2008

Cancels the registration of a garbage collection notification.

Namespace:  System
Assembly:  mscorlib (in mscorlib.dll)
Visual Basic (Declaration)
<PermissionSetAttribute(SecurityAction.LinkDemand, Name := "FullTrust")> _
Public Shared Sub CancelFullGCNotification
Visual Basic (Usage)
GC.CancelFullGCNotification()
C#
[PermissionSetAttribute(SecurityAction.LinkDemand, Name = "FullTrust")]
public static void CancelFullGCNotification()
Visual C++
[PermissionSetAttribute(SecurityAction::LinkDemand, Name = L"FullTrust")]
public:
static void CancelFullGCNotification()
JScript
public static function CancelFullGCNotification()
ExceptionCondition
InvalidOperationException

This member is not available when concurrent garbage collection is enabled. See the <gcConcurrent> runtime setting for information about how to disable concurrent garbage collection.

This method cancels a garbage collection notification that was registered by using the RegisterForFullGCNotification method. You do not have to call this method before adjusting threshold parameter values in subsequent calls to the RegisterForFullGCNotification method.

The following example cancels a garbage collection registration. This example is part of a larger example provided for the Garbage Collection Notifications topic.

Visual Basic
finalExit = True
checkForNotify = False
GC.CancelFullGCNotification()
C#
finalExit = true;
checkForNotify = false;
GC.CancelFullGCNotification();
  • LinkDemand 

    for full trust for the immediate caller. This member cannot be used by partially trusted code.

Windows 7, Windows Vista, Windows XP SP2, Windows Server 2008 R2, Windows Server 2008, Windows Server 2003

The .NET Framework and .NET Compact Framework do not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.

.NET Framework

Supported in: 3.5 SP1, 3.0 SP2, 2.0 SP2

Date

History

Reason

July 2008

Added topic.

SP1 feature change.

Tags What's this?: Add a tag
Community Content   What is Community Content?
Add new content RSS  Annotations
Processing
© 2009 Microsoft Corporation. All rights reserved. Terms of Use | Trademarks | Privacy Statement | Site Feedback
Page view tracker