ComposablePartDefinition.ExportDefinitions Property
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.
Gets a collection of ExportDefinition objects that describe the objects exported by the part defined by this ComposablePartDefinition object.
public:
abstract property System::Collections::Generic::IEnumerable<System::ComponentModel::Composition::Primitives::ExportDefinition ^> ^ ExportDefinitions { System::Collections::Generic::IEnumerable<System::ComponentModel::Composition::Primitives::ExportDefinition ^> ^ get(); };
public abstract System.Collections.Generic.IEnumerable<System.ComponentModel.Composition.Primitives.ExportDefinition> ExportDefinitions { get; }
member this.ExportDefinitions : seq<System.ComponentModel.Composition.Primitives.ExportDefinition>
Public MustOverride ReadOnly Property ExportDefinitions As IEnumerable(Of ExportDefinition)
Property Value
A collection of ExportDefinition objects that describe the exported objects provided by ComposablePart objects created by the ComposablePartDefinition.
Remarks
Overrides of this property should never return null
. If the ComposablePart objects created by the ComposablePartDefinition do not provide exported objects, return an empty IEnumerable<T> collection instead.