FilteredCatalog.IncludeDependencies Method

Definition

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

Overloads

IncludeDependencies()

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

IncludeDependencies(Func<ImportDefinition,Boolean>)

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

IncludeDependencies()

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 dependencies.

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

Returns

The new catalog.

Applies to

IncludeDependencies(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 dependencies that can be reached through imports that match the specified filter.

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

Parameters

importFilter
Func<ImportDefinition,Boolean>

The filter for imports.

Returns

The new catalog.

Applies to