ReRegisterForFinalize Method

[This documentation is for preview only, and is subject to change in later releases. Blank topics are included as placeholders.]

Requests that the system call the finalizer for the specified object for which SuppressFinalize has previously been called.

Namespace:  System
Assembly:  mscorlib (in mscorlib.dll)

Syntax

'Declaration
Public Shared Sub ReRegisterForFinalize ( _
    obj As Object _
)
public static void ReRegisterForFinalize(
    Object obj
)
public:
static void ReRegisterForFinalize(
    Object^ obj
)
static member ReRegisterForFinalize : 
        obj:Object -> unit 
public static function ReRegisterForFinalize(
    obj : Object
)

Parameters

Exceptions

Exception Condition
ArgumentNullException

obj is null Nothing nullptr unit a null reference (Nothing in Visual Basic) .

Remarks

The ReRegisterForFinalize method adds the obj parameter to the list of objects that request finalization before the garbage collector frees the object. The obj parameter must be the caller of this method.

Calling the ReRegisterForFinalize method does not guarantee that the garbage collector will call an object's finalizer.

By default, all objects that implement finalizers are added to the list of objects that require finalization; however, an object might have already been finalized or might have disabled finalization by calling the SuppressFinalize method.

A finalizer can use this method to resurrect itself or an object that it references.

.NET Framework Security

See Also

Reference

GC Class

System Namespace