This topic has not yet been rated - Rate this topic

WeakReference Constructor (Object, Boolean)

Initializes a new instance of the WeakReference class, referencing the specified object and using the specified resurrection tracking.

Namespace:  System
Assembly:  mscorlib (in mscorlib.dll)
[SecuritySafeCriticalAttribute]
public WeakReference(
	Object target,
	bool trackResurrection
)

Parameters

target
Type: System.Object
An object to track.
trackResurrection
Type: System.Boolean
Indicates when to stop tracking the object. If true, the object is tracked after finalization; if false, the object is only tracked until finalization.

If trackResurrection is false, a short weak reference is created. If trackResurrection is true, a long weak reference is created.

Windows Mobile for Pocket PC, Windows Mobile for Smartphone, Windows CE Platform Note: Short weak references are supported on the .NET Compact Framework, but long weak references are not supported. When you use this method, you must set the trackResurrection parameter to false.

Silverlight

Supported in: 5, 4, 3

Silverlight for Windows Phone

Supported in: Windows Phone OS 7.1, Windows Phone OS 7.0

XNA Framework

Supported in: Xbox 360, Windows Phone OS 7.0

For a list of the operating systems and browsers that are supported by Silverlight, see Supported Operating Systems and Browsers.

Did you find this helpful?
(1500 characters remaining)

Community Additions

ADD
© 2013 Microsoft. All rights reserved.