ComposablePartDefinition.ImportDefinitions 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 ImportDefinition objects that describe the imports required by the part defined by this ComposablePartDefinition object.
public:
abstract property System::Collections::Generic::IEnumerable<System::ComponentModel::Composition::Primitives::ImportDefinition ^> ^ ImportDefinitions { System::Collections::Generic::IEnumerable<System::ComponentModel::Composition::Primitives::ImportDefinition ^> ^ get(); };
public abstract System.Collections.Generic.IEnumerable<System.ComponentModel.Composition.Primitives.ImportDefinition> ImportDefinitions { get; }
member this.ImportDefinitions : seq<System.ComponentModel.Composition.Primitives.ImportDefinition>
Public MustOverride ReadOnly Property ImportDefinitions As IEnumerable(Of ImportDefinition)
Property Value
A collection of ImportDefinition objects that describe the imports required 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 have imports, return an empty IEnumerable<T> collection instead.