System.Composition.AttributedModel 10.0.0-preview.3.25171.5

About

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

This package provides the foundational attributes that allow you to declare parts for composition, such as imports, exports, and metadata. It is used to mark classes, properties, methods, and constructors for MEF's discovery and composition process.

Key Features

  • Provides attributes for declaring composable parts, importing dependencies, metadata, and creating shared or non-shared parts

How to Use

Mark classes for export and import using attributes.

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

var configuration = new ContainerConfiguration()
    .WithPart<Service>()
    .WithPart<Application>();

using CompositionHost container = configuration.CreateContainer();

Application app = container.GetExport<Application>();
app.Service.Execute();
// Service is running!

[Export]
public class Application
{
    [Import]
    public Service Service { get; set; }
}

[Export]
public class Service
{
    public void Execute() => Console.WriteLine("Service is running!");
}

Metadata can be used to differentiate between multiple exports of the same contract.

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

ContainerConfiguration configuration = new ContainerConfiguration()
    .WithPart<FileLogger>()
    .WithPart<ConsoleLogger>()
    .WithPart<Application>();

using CompositionHost container = configuration.CreateContainer();

Application app = container.GetExport<Application>();
app.Run();
// Using FileLogger to log.
// FileLogger: Hello, World!
// Using ConsoleLogger to log.
// ConsoleLogger: Hello, World!

public interface ILogger
{
    void Log(string message);
}

[Export(typeof(ILogger))]
[ExportMetadata("Name", "FileLogger")]
public class FileLogger : ILogger
{
    public void Log(string message) => Console.WriteLine($"FileLogger: {message}");
}

[Export(typeof(ILogger))]
[ExportMetadata("Name", "ConsoleLogger")]
public class ConsoleLogger : ILogger
{
    public void Log(string message) => Console.WriteLine($"ConsoleLogger: {message}");
}

[Export]
public class Application
{
    [ImportMany]
    public required IEnumerable<Lazy<ILogger, IDictionary<string, object>>> Loggers { get; set; }

    public void Run()
    {
        foreach (var logger in Loggers)
        {
            var name = logger.Metadata["Name"];

            Console.WriteLine($"Using {name} to log.");
            logger.Value.Log("Hello, World!");
        }
    }
}

Main Types

The main types provided by this library are:

  • System.Composition.ExportAttribute
  • System.Composition.ImportAttribute
  • System.Composition.ExportMetadataAttribute

Additional Documentation

Feedback & Contributing

System.Composition.AttributedModel 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.AttributedModel.

Packages
System.Composition
Provides a version of the Managed Extensibility Framework (MEF) that is lightweight and specifically optimized for high throughput scenarios, such as the web.
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.
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
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
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 7e3dbdb95b30650eabade0ac73a10b22d4dbe8b3 When using NuGet 3.x this package requires at least version 3.4.
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 af7d2ae49c79bb279625de4e92f7f91f9fe94f5d When using NuGet 3.x this package requires at least version 3.4.

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

.NET Framework 4.6.2

  • No dependencies.

.NET 8.0

  • No dependencies.

.NET 9.0

  • No dependencies.

.NET 10.0

  • No dependencies.

.NET Standard 2.0

  • No dependencies.

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