İngilizce dilinde oku Düzenle

Aracılığıyla paylaş


TypeDescriptor.RemoveAssociation(Object, Object) Method

Definition

Important

Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.

Removes an association between two objects.

C#
public static void RemoveAssociation(object primary, object secondary);

Parameters

primary
Object

The primary Object.

secondary
Object

The secondary Object.

Exceptions

One or both of the parameters are null.

Remarks

The RemoveAssociation method removes an association between two objects formed by the CreateAssociation method.

A WeakReference is used to maintain the association between the primary and secondary object; therefore, this method does not influence when either object is finalized or reclaimed by garbage collection.

Applies to

Ürün Sürümler
.NET Core 1.0, Core 1.1, Core 2.0, Core 2.1, Core 2.2, Core 3.0, Core 3.1, 5, 6, 7, 8, 9, 10
.NET Framework 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1
.NET Standard 2.0, 2.1

See also