FilteredCatalog.IncludeDependents Method

Definition

Gets a new FilteredCatalog object that contains all the parts from this catalog and all their dependents.

Overloads

IncludeDependents()

Gets a new FilteredCatalog object that contains all the parts from this catalog and all their dependents.

IncludeDependents(Func<ImportDefinition,Boolean>)

Gets a new FilteredCatalog object that contains all the parts from this catalog and all dependents that can be reached through imports that match the specified filter.

IncludeDependents()

Source:
FilteredCatalog.Traversal.cs
Source:
FilteredCatalog.Traversal.cs
Source:
FilteredCatalog.Traversal.cs
Source:
FilteredCatalog.Traversal.cs

Gets a new FilteredCatalog object that contains all the parts from this catalog and all their dependents.

public:
 System::ComponentModel::Composition::Hosting::FilteredCatalog ^ IncludeDependents();
public System.ComponentModel.Composition.Hosting.FilteredCatalog IncludeDependents ();
member this.IncludeDependents : unit -> System.ComponentModel.Composition.Hosting.FilteredCatalog
Public Function IncludeDependents () As FilteredCatalog

Returns

The new catalog.

Applies to

IncludeDependents(Func<ImportDefinition,Boolean>)

Source:
FilteredCatalog.Traversal.cs
Source:
FilteredCatalog.Traversal.cs
Source:
FilteredCatalog.Traversal.cs
Source:
FilteredCatalog.Traversal.cs

Gets a new FilteredCatalog object that contains all the parts from this catalog and all dependents that can be reached through imports that match the specified filter.

public:
 System::ComponentModel::Composition::Hosting::FilteredCatalog ^ IncludeDependents(Func<System::ComponentModel::Composition::Primitives::ImportDefinition ^, bool> ^ importFilter);
public System.ComponentModel.Composition.Hosting.FilteredCatalog IncludeDependents (Func<System.ComponentModel.Composition.Primitives.ImportDefinition,bool> importFilter);
member this.IncludeDependents : Func<System.ComponentModel.Composition.Primitives.ImportDefinition, bool> -> System.ComponentModel.Composition.Hosting.FilteredCatalog
Public Function IncludeDependents (importFilter As Func(Of ImportDefinition, Boolean)) As FilteredCatalog

Parameters

importFilter
Func<ImportDefinition,Boolean>

The filter for imports.

Returns

The new catalog.

Applies to