ExportProvider.GetExportsCore(ImportDefinition, AtomicComposition) Method

Definition

Gets all the exports that match the constraint defined by the specified definition.

C#
protected abstract System.Collections.Generic.IEnumerable<System.ComponentModel.Composition.Primitives.Export>? GetExportsCore(System.ComponentModel.Composition.Primitives.ImportDefinition definition, System.ComponentModel.Composition.Hosting.AtomicComposition? atomicComposition);
C#
protected abstract System.Collections.Generic.IEnumerable<System.ComponentModel.Composition.Primitives.Export> GetExportsCore(System.ComponentModel.Composition.Primitives.ImportDefinition definition, System.ComponentModel.Composition.Hosting.AtomicComposition atomicComposition);

Parameters

definition
ImportDefinition

The object that defines the conditions of the Export objects to return.

atomicComposition
AtomicComposition

The transactional container for the composition.

Returns

A collection that contains all the exports that match the specified condition.

Remarks

Overrides of this method should not treat cardinality-related mismatches as errors, and should not throw exceptions in those cases. For example, if Cardinality is ExactlyOne and there are zero Export objects that match the conditions of the specified ImportDefinition, an empty IEnumerable<T> collection should be returned.

Applies to

Product Versions
.NET 8 (package-provided), 9 (package-provided), 10 (package-provided)
.NET Framework 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 (package-provided)