ContainerConfiguration.WithPart Method

Definition

Overloads

WithPart(Type)

Adds a specified part type to the container.

WithPart(Type, AttributedModelProvider)

Adds a specified part type to the container.

WithPart<TPart>()

Adds the specified type to the container.

WithPart<TPart>(AttributedModelProvider)

Adds the specified type to the container using the specified conventions.

WithPart(Type)

Adds a specified part type to the container.

public:
 System::Composition::Hosting::ContainerConfiguration ^ WithPart(Type ^ partType);
public System.Composition.Hosting.ContainerConfiguration WithPart (Type partType);
member this.WithPart : Type -> System.Composition.Hosting.ContainerConfiguration
Public Function WithPart (partType As Type) As ContainerConfiguration

Parameters

partType
Type

The part type to add.

Returns

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

Applies to

WithPart(Type, AttributedModelProvider)

Adds a specified part type to the container.

public:
 System::Composition::Hosting::ContainerConfiguration ^ WithPart(Type ^ partType, System::Composition::Convention::AttributedModelProvider ^ conventions);
public System.Composition.Hosting.ContainerConfiguration WithPart (Type partType, System.Composition.Convention.AttributedModelProvider conventions);
member this.WithPart : Type * System.Composition.Convention.AttributedModelProvider -> System.Composition.Hosting.ContainerConfiguration
Public Function WithPart (partType As Type, conventions As AttributedModelProvider) As ContainerConfiguration

Parameters

partType
Type

The part type to add.

conventions
AttributedModelProvider

The conventions to use for the part type.

Returns

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

Applies to

WithPart<TPart>()

Adds the specified type to the container.

public:
generic <typename TPart>
 System::Composition::Hosting::ContainerConfiguration ^ WithPart();
public System.Composition.Hosting.ContainerConfiguration WithPart<TPart> ();
member this.WithPart : unit -> System.Composition.Hosting.ContainerConfiguration
Public Function WithPart(Of TPart) () As ContainerConfiguration

Type Parameters

TPart

The type to add.

Returns

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

Applies to

WithPart<TPart>(AttributedModelProvider)

Adds the specified type to the container using the specified conventions.

public:
generic <typename TPart>
 System::Composition::Hosting::ContainerConfiguration ^ WithPart(System::Composition::Convention::AttributedModelProvider ^ conventions);
public System.Composition.Hosting.ContainerConfiguration WithPart<TPart> (System.Composition.Convention.AttributedModelProvider conventions);
member this.WithPart : System.Composition.Convention.AttributedModelProvider -> System.Composition.Hosting.ContainerConfiguration
Public Function WithPart(Of TPart) (conventions As AttributedModelProvider) As ContainerConfiguration

Type Parameters

TPart

The type to add.

Parameters

conventions
AttributedModelProvider

The conventions to use for the part type.

Returns

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

Applies to