IApplicationFeatureProvider<TFeature>.PopulateFeature 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.
Updates the feature
instance.
public:
void PopulateFeature(System::Collections::Generic::IEnumerable<Microsoft::AspNetCore::Mvc::ApplicationParts::ApplicationPart ^> ^ parts, TFeature feature);
public void PopulateFeature (System.Collections.Generic.IEnumerable<Microsoft.AspNetCore.Mvc.ApplicationParts.ApplicationPart> parts, TFeature feature);
abstract member PopulateFeature : seq<Microsoft.AspNetCore.Mvc.ApplicationParts.ApplicationPart> * 'Feature -> unit
Public Sub PopulateFeature (parts As IEnumerable(Of ApplicationPart), feature As TFeature)
Parameters
- parts
- IEnumerable<ApplicationPart>
The list of ApplicationPart instances in the application.
- feature
- TFeature
The feature instance to populate.
Remarks
ApplicationPart instances in parts
appear in the same ordered sequence they are stored in ApplicationParts. This ordering may be used by the feature provider to make precedence decisions.