ContainerConfiguration.WithAssembly Method

Definition

Overloads

WithAssembly(Assembly)

Adds part types from the specified assembly to the container.

WithAssembly(Assembly, AttributedModelProvider)

Adds part types from the specified assembly to the container, using the specified conventions.

WithAssembly(Assembly)

Source:
ContainerConfiguration.cs
Source:
ContainerConfiguration.cs
Source:
ContainerConfiguration.cs
Source:
ContainerConfiguration.cs

Adds part types from the specified assembly to the container.

public:
 System::Composition::Hosting::ContainerConfiguration ^ WithAssembly(System::Reflection::Assembly ^ assembly);
public System.Composition.Hosting.ContainerConfiguration WithAssembly (System.Reflection.Assembly assembly);
member this.WithAssembly : System.Reflection.Assembly -> System.Composition.Hosting.ContainerConfiguration
Public Function WithAssembly (assembly As Assembly) As ContainerConfiguration

Parameters

assembly
Assembly

The assembly to add part types from.

Returns

An object that can be used to further configure the container.

Applies to

WithAssembly(Assembly, AttributedModelProvider)

Source:
ContainerConfiguration.cs
Source:
ContainerConfiguration.cs
Source:
ContainerConfiguration.cs
Source:
ContainerConfiguration.cs

Adds part types from the specified assembly to the container, using the specified conventions.

public:
 System::Composition::Hosting::ContainerConfiguration ^ WithAssembly(System::Reflection::Assembly ^ assembly, System::Composition::Convention::AttributedModelProvider ^ conventions);
public System.Composition.Hosting.ContainerConfiguration WithAssembly (System.Reflection.Assembly assembly, System.Composition.Convention.AttributedModelProvider conventions);
member this.WithAssembly : System.Reflection.Assembly * System.Composition.Convention.AttributedModelProvider -> System.Composition.Hosting.ContainerConfiguration
Public Function WithAssembly (assembly As Assembly, conventions As AttributedModelProvider) As ContainerConfiguration

Parameters

assembly
Assembly

The assembly to add part types from.

conventions
AttributedModelProvider

The conventions to use for part types.

Returns

An object that can be used to further configure the container.

Applies to