System.Composition.Hosting 9.0.1
About
System.Composition.Hosting
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 core services for creating composition containers. It offers tools to configure and manage the composition of parts within your application, facilitating dependency injection and enabling modular architectures.
Key Features
- Create and manage composition containers for dynamic dependency injection.
How to Use
Create a composition host and compose parts.
using System.Composition;
using System.Composition.Hosting;
// Create a container configuration
var configuration = new ContainerConfiguration()
.WithPart<Service>();
// Create the composition host (container)
using CompositionHost container = configuration.CreateContainer();
// Get an instance of the service
var service = container.GetExport<IService>();
service.Run();
// Service is running!
public interface IService
{
void Run();
}
[Export(typeof(IService))]
public class Service : IService
{
public void Run() => Console.WriteLine("Service is running!");
}
Main Types
The main type provided by this library is:
System.Composition.CompositionHost
Additional Documentation
Related Packages
- System.Composition
- System.Composition.AttributedModel
- System.Composition.Convention
- System.Composition.Runtime
- System.Composition.TypedParts
Feedback & Contributing
System.Composition.Hosting 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.Hosting.
Packages | Downloads |
---|---|
System.Composition.TypedParts
Provides container configuration and some extension methods for the Managed Extensibility Framework (MEF).
|
1 |
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.
|
0 |
.NET Framework 4.6.2
- System.Composition.Runtime (>= 9.0.1)
.NET 8.0
- System.Composition.Runtime (>= 9.0.1)
.NET 9.0
- System.Composition.Runtime (>= 9.0.1)
.NET Standard 2.0
- System.Composition.Runtime (>= 9.0.1)