System.Composition.TypedParts 9.0.0-rc.2.24473.5

About

System.Composition.TypedParts is part of the Managed Extensibility Framework (MEF) 2.0, a composition library for .NET that enables dependency injection through attributes or conventions.

Provides ContainerConfiguration and some extension methods for the Managed Extensibility Framework (MEF).

Key Features

  • Provides container configuration.

How to Use

Register parts from an entire assembly.

using System.Composition;
using System.Composition.Hosting;
using System.Reflection;

// Register all parts from the current assembly
var configuration = new ContainerConfiguration()
    .WithAssembly(Assembly.GetExecutingAssembly());

using CompositionHost container = configuration.CreateContainer();

var handlers = container.GetExports<IHandler>();
foreach (var handler in handlers)
{
    handler.Handle();
}
// HandlerA is handling.
// HandlerB is handling.

public interface IHandler
{
    void Handle();
}

[Export(typeof(IHandler))]
public class HandlerA : IHandler
{
    public void Handle() => Console.WriteLine("HandlerA is handling.");
}

[Export(typeof(IHandler))]
public class HandlerB : IHandler
{
    public void Handle() => Console.WriteLine("HandlerB is handling.");
}

Main Types

The main types provided by this library are:

  • System.Composition.Hosting.ContainerConfiguration
  • System.Composition.CompositionContextExtensions

Additional Documentation

Feedback & Contributing

System.Composition.TypedParts is released as open source under the MIT license. Bug reports and contributions are welcome at the GitHub repository.

Showing the top 20 packages that depend on System.Composition.TypedParts.

Packages Downloads
System.Composition
This packages provides a version of the Managed Extensibility Framework (MEF) that is lightweight and specifically optimized for high throughput scenarios, such as the web. Commonly Used Types: System.Composition.ExportAttribute System.Composition.ImportAttribute System.Composition.Convention.ConventionBuilder System.Composition.Hosting.CompositionHost System.Composition.CompositionContext System.Composition.CompositionContextExtensions When using NuGet 3.x this package requires at least version 3.4.
5,138
System.Composition
This packages provides a version of the Managed Extensibility Framework (MEF) that is lightweight and specifically optimized for high throughput scenarios, such as the web. Commonly Used Types: System.Composition.ExportAttribute System.Composition.ImportAttribute System.Composition.Convention.ConventionBuilder System.Composition.Hosting.CompositionHost System.Composition.CompositionContext System.Composition.CompositionContextExtensions
853
System.Composition
This package provides a version of the Managed Extensibility Framework (MEF) that is lightweight and specifically optimized for high throughput scenarios, such as the web. Commonly Used Types: System.Composition.ExportAttribute System.Composition.ImportAttribute System.Composition.Convention.ConventionBuilder System.Composition.Hosting.CompositionHost System.Composition.CompositionContext System.Composition.CompositionContextExtensions
780
System.Composition
This package provides a version of the Managed Extensibility Framework (MEF) that is lightweight and specifically optimized for high throughput scenarios, such as the web. Commonly Used Types: System.Composition.ExportAttribute System.Composition.ImportAttribute System.Composition.Convention.ConventionBuilder System.Composition.Hosting.CompositionHost System.Composition.CompositionContext System.Composition.CompositionContextExtensions
15
System.Composition
This package provides a version of the Managed Extensibility Framework (MEF) that is lightweight and specifically optimized for high throughput scenarios, such as the web. Commonly Used Types: System.Composition.ExportAttribute System.Composition.ImportAttribute System.Composition.Convention.ConventionBuilder System.Composition.Hosting.CompositionHost System.Composition.CompositionContext System.Composition.CompositionContextExtensions
14
System.Composition
This packages provides a version of the Managed Extensibility Framework (MEF) that is lightweight and specifically optimized for high throughput scenarios, such as the web. Commonly Used Types: System.Composition.ExportAttribute System.Composition.ImportAttribute System.Composition.Convention.ConventionBuilder System.Composition.Hosting.CompositionHost System.Composition.CompositionContext System.Composition.CompositionContextExtensions
13
System.Composition
This package provides a version of the Managed Extensibility Framework (MEF) that is lightweight and specifically optimized for high throughput scenarios, such as the web. Commonly Used Types: System.Composition.ExportAttribute System.Composition.ImportAttribute System.Composition.Convention.ConventionBuilder System.Composition.Hosting.CompositionHost System.Composition.CompositionContext System.Composition.CompositionContextExtensions
13
System.Composition
This packages provides a version of the Managed Extensibility Framework (MEF) that is lightweight and specifically optimized for high throughput scenarios, such as the web. Commonly Used Types: System.Composition.ExportAttribute System.Composition.ImportAttribute System.Composition.Convention.ConventionBuilder System.Composition.Hosting.CompositionHost System.Composition.CompositionContext System.Composition.CompositionContextExtensions When using NuGet 3.x this package requires at least version 3.4.
13
System.Composition
This packages provides a version of the Managed Extensibility Framework (MEF) that is lightweight and specifically optimized for high throughput scenarios, such as the web. Commonly Used Types: System.Composition.ExportAttribute System.Composition.ImportAttribute System.Composition.Convention.ConventionBuilder System.Composition.Hosting.CompositionHost System.Composition.CompositionContext System.Composition.CompositionContextExtensions
12
System.Composition
This package provides a version of the Managed Extensibility Framework (MEF) that is lightweight and specifically optimized for high throughput scenarios, such as the web. Commonly Used Types: System.Composition.ExportAttribute System.Composition.ImportAttribute System.Composition.Convention.ConventionBuilder System.Composition.Hosting.CompositionHost System.Composition.CompositionContext System.Composition.CompositionContextExtensions
12
System.Composition
This packages provides a version of the Managed Extensibility Framework (MEF) that is lightweight and specifically optimized for high throughput scenarios, such as the web. Commonly Used Types: System.Composition.ExportAttribute System.Composition.ImportAttribute System.Composition.Convention.ConventionBuilder System.Composition.Hosting.CompositionHost System.Composition.CompositionContext System.Composition.CompositionContextExtensions When using NuGet 3.x this package requires at least version 3.4.
12
System.Composition
This packages provides a version of the Managed Extensibility Framework (MEF) that is lightweight and specifically optimized for high throughput scenarios, such as the web. Commonly Used Types: System.Composition.ExportAttribute System.Composition.ImportAttribute System.Composition.Convention.ConventionBuilder System.Composition.Hosting.CompositionHost System.Composition.CompositionContext System.Composition.CompositionContextExtensions
11
System.Composition
This package provides a version of the Managed Extensibility Framework (MEF) that is lightweight and specifically optimized for high throughput scenarios, such as the web. Commonly Used Types: System.Composition.ExportAttribute System.Composition.ImportAttribute System.Composition.Convention.ConventionBuilder System.Composition.Hosting.CompositionHost System.Composition.CompositionContext System.Composition.CompositionContextExtensions
11
System.Composition
This packages provides a version of the Managed Extensibility Framework (MEF) that is lightweight and specifically optimized for high throughput scenarios, such as the web. Commonly Used Types: System.Composition.ExportAttribute System.Composition.ImportAttribute System.Composition.Convention.ConventionBuilder System.Composition.Hosting.CompositionHost System.Composition.CompositionContext System.Composition.CompositionContextExtensions When using NuGet 3.x this package requires at least version 3.4.
11

https://go.microsoft.com/fwlink/?LinkID=799421

.NET Framework 4.6.2

.NET Standard 2.0

.NET 9.0

.NET 8.0

Version Downloads Last updated
9.0.0-rc.2.24473.5 1 10/22/2024
9.0.0-rc.1.24431.7 4 09/12/2024
9.0.0-preview.7.24405.7 7 08/22/2024
9.0.0-preview.6.24327.7 9 07/15/2024
9.0.0-preview.5.24306.7 9 06/14/2024
9.0.0-preview.4.24266.19 12 05/23/2024
9.0.0-preview.3.24172.9 9 04/12/2024
9.0.0-preview.2.24128.5 8 03/16/2024
9.0.0-preview.1.24080.9 11 02/21/2024
8.0.0 13 12/25/2023
8.0.0-rc.2.23479.6 8 01/05/2024
8.0.0-rc.1.23419.4 11 10/02/2023
8.0.0-preview.7.23375.6 10 11/12/2023
8.0.0-preview.6.23329.7 12 10/04/2023
8.0.0-preview.5.23280.8 12 10/30/2023
8.0.0-preview.4.23259.5 12 07/27/2023
8.0.0-preview.3.23174.8 13 10/02/2023
8.0.0-preview.2.23128.3 14 06/22/2023
8.0.0-preview.1.23110.8 11 06/12/2023
7.0.0 778 06/23/2023
7.0.0-rc.2.22472.3 9 10/14/2023
7.0.0-rc.1.22426.10 10 11/03/2023
7.0.0-preview.7.22375.6 11 11/12/2023
7.0.0-preview.6.22324.4 12 07/10/2023
7.0.0-preview.5.22301.12 11 06/23/2023
7.0.0-preview.4.22229.4 13 11/02/2023
7.0.0-preview.3.22175.4 10 06/22/2023
7.0.0-preview.2.22152.2 11 07/09/2023
7.0.0-preview.1.22076.8 11 07/10/2023
6.0.2-mauipre.1.22102.15 12 07/09/2023
6.0.2-mauipre.1.22054.8 10 11/12/2023
6.0.0 843 10/03/2023
6.0.0-rc.2.21480.5 13 10/13/2023
6.0.0-rc.1.21451.13 16 06/24/2023
6.0.0-preview.7.21377.19 13 07/27/2023
6.0.0-preview.6.21352.12 12 11/19/2023
6.0.0-preview.5.21301.5 12 08/19/2023
6.0.0-preview.4.21253.7 17 07/09/2023
6.0.0-preview.3.21201.4 8 11/09/2023
6.0.0-preview.2.21154.6 11 10/07/2023
6.0.0-preview.1.21102.12 14 07/10/2023
5.0.1 12 10/15/2023
5.0.0 15 06/23/2023
5.0.0-rc.2.20475.5 13 07/26/2023
5.0.0-rc.1.20451.14 14 07/26/2023
5.0.0-preview.8.20407.11 9 06/13/2023
5.0.0-preview.7.20364.11 11 10/07/2023
5.0.0-preview.6.20305.6 11 06/12/2023
5.0.0-preview.5.20278.1 10 11/12/2023
5.0.0-preview.4.20251.6 10 07/09/2023
5.0.0-preview.3.20214.6 12 07/28/2023
5.0.0-preview.2.20160.6 8 10/10/2023
5.0.0-preview.1.20120.5 12 10/02/2023
1.4.1 17 08/19/2023
1.4.0 15 07/09/2023
1.4.0-preview3.19551.4 12 07/26/2023
1.4.0-preview2.19523.17 10 10/03/2023
1.4.0-preview1.19504.10 11 11/20/2023
1.3.0 13 08/19/2023
1.3.0-rc1.19456.4 13 11/12/2023
1.3.0-preview9.19421.4 11 08/20/2023
1.3.0-preview9.19416.11 8 11/20/2023
1.3.0-preview8.19405.3 10 11/12/2023
1.3.0-preview7.19362.9 11 11/12/2023
1.3.0-preview6.19303.8 13 11/12/2023
1.3.0-preview6.19264.9 13 11/12/2023
1.3.0-preview5.19224.8 12 10/31/2023
1.3.0-preview4.19212.13 11 11/11/2023
1.3.0-preview3.19128.7 11 11/12/2023
1.3.0-preview.19073.11 12 11/11/2023
1.3.0-preview.18571.3 13 10/06/2023
1.2.0 13 10/10/2023
1.2.0-rc1 10 12/31/2023
1.2.0-preview2-26406-04 13 10/16/2023
1.2.0-preview1-26216-02 10 10/17/2023
1.1.0 16 11/25/2023
1.1.0-preview2-25405-01 15 10/17/2023
1.1.0-preview1-25305-02 13 10/17/2023
1.0.31 5,101 12/16/2020
1.0.31-preview1-24530-04 8 10/20/2023