WeakReference Class

Microsoft Silverlight will reach end of support after October 2021. Learn more.

Represents a weak reference, which references an object while still allowing that object to be reclaimed by garbage collection.

Inheritance Hierarchy

System.Object
  System.WeakReference

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

Syntax

'Declaration
<ComVisibleAttribute(True)> _
Public Class WeakReference
[ComVisibleAttribute(true)]
public class WeakReference

The WeakReference type exposes the following members.

Constructors

  Name Description
Protected methodSupported by Silverlight for Windows PhoneSupported by Xbox 360 WeakReference() Initializes a new instance of the WeakReference class. This constructor overload cannot be implemented in Silverlight-based applications.
Public methodSupported by Silverlight for Windows PhoneSupported by Xbox 360 WeakReference(Object) Initializes a new instance of the WeakReference class, referencing the specified object.
Public methodSupported by Silverlight for Windows PhoneSupported by Xbox 360 WeakReference(Object, Boolean) Initializes a new instance of the WeakReference class, referencing the specified object and using the specified resurrection tracking.

Top

Properties

  Name Description
Public propertySupported by Silverlight for Windows PhoneSupported by Xbox 360 IsAlive Gets an indication whether the object referenced by the current WeakReference object has been garbage collected.
Public propertySupported by Silverlight for Windows PhoneSupported by Xbox 360 Target Gets or sets the object (the target) referenced by the current WeakReference object.
Public propertySupported by Silverlight for Windows PhoneSupported by Xbox 360 TrackResurrection Gets an indication whether the object referenced by the current WeakReference object is tracked after it is finalized.

Top

Methods

  Name Description
Public methodSupported by Silverlight for Windows PhoneSupported by Xbox 360 Equals(Object) Determines whether the specified Object is equal to the current Object. (Inherited from Object.)
Protected methodSupported by Silverlight for Windows PhoneSupported by Xbox 360 Finalize Discards the reference to the target represented by the current WeakReference object. (Overrides Object.Finalize().)
Public methodSupported by Silverlight for Windows PhoneSupported by Xbox 360 GetHashCode Serves as a hash function for a particular type. (Inherited from Object.)
Public methodSupported by Silverlight for Windows PhoneSupported by Xbox 360 GetType Gets the Type of the current instance. (Inherited from Object.)
Protected methodSupported by Silverlight for Windows PhoneSupported by Xbox 360 MemberwiseClone Creates a shallow copy of the current Object. (Inherited from Object.)
Public methodSupported by Silverlight for Windows PhoneSupported by Xbox 360 ToString Returns a string that represents the current object. (Inherited from Object.)

Top

Remarks

A weak reference allows the garbage collector to collect an object while still allowing an application to access the object. If you need the object, you can still obtain a strong reference to it and prevent it from being collected.

Version Information

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

Platforms

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

Thread Safety

Any public static (Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.

See Also

Reference

GC