System.Composition.AttributedModel 9.0.0-rc.2.24473.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 Downloads
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
85
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
61
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
63
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
66
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
68
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 8321c729934c0f8be754953439b88e6e1c120c24 When using NuGet 3.x this package requires at least version 3.4.
67
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.
58
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.
62
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.
63
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.
70
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.
74
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.
89
System.Composition.TypedParts
Provides some extension methods for the Managed Extensibility Framework. Commonly Used Types: System.Composition.CompositionContextExtensions System.Composition.Hosting.ContainerConfiguration
59
System.Composition.TypedParts
Provides some extension methods for the Managed Extensibility Framework. Commonly Used Types: System.Composition.CompositionContextExtensions System.Composition.Hosting.ContainerConfiguration
63
System.Composition.TypedParts
Provides some extension methods for the Managed Extensibility Framework. Commonly Used Types: System.Composition.CompositionContextExtensions System.Composition.Hosting.ContainerConfiguration 8321c729934c0f8be754953439b88e6e1c120c24 When using NuGet 3.x this package requires at least version 3.4.
59
System.Composition.TypedParts
Provides some extension methods for the Managed Extensibility Framework. Commonly Used Types: System.Composition.CompositionContextExtensions System.Composition.Hosting.ContainerConfiguration When using NuGet 3.x this package requires at least version 3.4.
63
System.Composition.TypedParts
Provides some extension methods for the Managed Extensibility Framework. Commonly Used Types: System.Composition.CompositionContextExtensions System.Composition.Hosting.ContainerConfiguration When using NuGet 3.x this package requires at least version 3.4.
78

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 Standard 2.0

  • No dependencies.

Version Downloads Last updated
9.0.0-rc.2.24473.5 5 10/15/2024
9.0.0-rc.1.24431.7 7 09/15/2024
9.0.0-preview.7.24405.7 8 08/14/2024
9.0.0-preview.6.24327.7 13 07/12/2024
9.0.0-preview.5.24306.7 8 06/14/2024
9.0.0-preview.4.24266.19 8 05/23/2024
9.0.0-preview.3.24172.9 8 04/21/2024
9.0.0-preview.2.24128.5 9 03/14/2024
9.0.0-preview.1.24080.9 8 02/25/2024
8.0.0 13 11/15/2023
8.0.0-rc.2.23479.6 8 10/31/2023
8.0.0-rc.1.23419.4 15 09/18/2023
8.0.0-preview.7.23375.6 35 09/11/2023
8.0.0-preview.6.23329.7 12 09/18/2023
8.0.0-preview.5.23280.8 16 06/21/2023
8.0.0-preview.4.23259.5 15 06/04/2023
8.0.0-preview.3.23174.8 23 05/14/2023
8.0.0-preview.2.23128.3 20 04/09/2023
8.0.0-preview.1.23110.8 55 03/08/2023
7.0.0 30 04/09/2023
7.0.0-rc.2.22472.3 24 10/15/2022
7.0.0-rc.1.22426.10 35 09/21/2022
7.0.0-preview.7.22375.6 29 09/22/2022
7.0.0-preview.6.22324.4 49 09/23/2022
7.0.0-preview.5.22301.12 18 10/16/2022
7.0.0-preview.4.22229.4 32 09/21/2022
7.0.0-preview.3.22175.4 62 09/22/2022
7.0.0-preview.2.22152.2 29 09/22/2022
7.0.0-preview.1.22076.8 27 09/22/2022
6.0.2-mauipre.1.22102.15 34 09/25/2022
6.0.2-mauipre.1.22054.8 28 09/23/2022
6.0.0 63 09/23/2022
6.0.0-rc.2.21480.5 22 09/22/2022
6.0.0-rc.1.21451.13 22 09/21/2022
6.0.0-preview.7.21377.19 49 09/23/2022
6.0.0-preview.6.21352.12 50 09/23/2022
6.0.0-preview.5.21301.5 41 09/21/2022
6.0.0-preview.4.21253.7 38 09/24/2022
6.0.0-preview.3.21201.4 59 09/26/2022
6.0.0-preview.2.21154.6 38 09/22/2022
6.0.0-preview.1.21102.12 57 09/22/2022
5.0.1 54 09/25/2022
5.0.0 57 09/24/2022
5.0.0-rc.2.20475.5 37 09/23/2022
5.0.0-rc.1.20451.14 21 09/24/2022
5.0.0-preview.8.20407.11 31 09/23/2022
5.0.0-preview.7.20364.11 30 09/26/2022
5.0.0-preview.6.20305.6 29 10/16/2022
5.0.0-preview.5.20278.1 59 09/23/2022
5.0.0-preview.4.20251.6 66 09/21/2022
5.0.0-preview.3.20214.6 25 09/23/2022
5.0.0-preview.2.20160.6 62 09/23/2022
5.0.0-preview.1.20120.5 31 09/22/2022
1.4.1 49 09/24/2022
1.4.0 50 09/23/2022
1.4.0-preview3.19551.4 41 09/22/2022
1.4.0-preview2.19523.17 25 09/21/2022
1.4.0-preview1.19504.10 21 09/24/2022
1.3.0 52 09/21/2022
1.3.0-rc1.19456.4 22 09/26/2022
1.3.0-preview9.19421.4 72 09/23/2022
1.3.0-preview9.19416.11 31 09/23/2022
1.3.0-preview8.19405.3 29 09/21/2022
1.3.0-preview7.19362.9 21 09/23/2022
1.3.0-preview6.19303.8 40 09/22/2022
1.3.0-preview6.19264.9 32 09/23/2022
1.3.0-preview5.19224.8 38 09/23/2022
1.3.0-preview4.19212.13 48 09/21/2022
1.3.0-preview3.19128.7 34 09/23/2022
1.3.0-preview.19073.11 31 09/23/2022
1.3.0-preview.18571.3 29 09/27/2022
1.2.0 19 09/22/2022
1.2.0-rc1 36 09/22/2022
1.2.0-preview2-26406-04 60 09/24/2022
1.2.0-preview1-26216-02 44 09/21/2022
1.1.0 22 09/23/2022
1.1.0-preview2-25405-01 37 09/23/2022
1.1.0-preview1-25305-02 24 09/23/2022
1.0.31 43 06/27/2022
1.0.31-preview1-24530-04 23 09/24/2022