RegistrationExtensionsResolveExportsT Method (IComponentContext) |
Locate all of the MEF exports registered as supplying contract type T.
Namespace:
Autofac.Integration.Mef
Assembly:
Autofac.Integration.Mef (in Autofac.Integration.Mef.dll) Version: 6.0.0+4280ac7e7f34f8dcbf61bbdf820a070216e453fc
Syntax public static IEnumerable<Export> ResolveExports<T>(
this IComponentContext context
)
<ExtensionAttribute>
Public Shared Function ResolveExports(Of T) (
context As IComponentContext
) As IEnumerable(Of Export)
Parameters
- context
- Type: AutofacIComponentContext
The context to resolve exports from.
Type Parameters
- T
- The contract type.
Return Value
Type:
IEnumerableExportA list of exports.
Usage Note
In Visual Basic and C#, you can call this method as an instance method on any object of type
IComponentContext. When you use instance method syntax to call this method, omit the first parameter. For more information, see
Extension Methods (Visual Basic) or
Extension Methods (C# Programming Guide).
See Also