Share via


UnityContainerBase.Configure<TConfigurator> Method

Retired Content

This content is outdated and is no longer being maintained. It is provided as a courtesy for individuals who are still using these technologies. This page may contain URLs that were valid when originally published, but now link to sites or pages that no longer exist.

The latest Unity Application Block information can be found at the Unity Application Block site.

Get access to a configuration interface exposed by an extension.

Namespace:  Microsoft.Practices.Unity
Assembly:  Microsoft.Practices.Unity (in Microsoft.Practices.Unity.dll)

Syntax

'Declaration
Public Function Configure(Of TConfigurator As IUnityContainerExtensionConfigurator) As TConfigurator
public TConfigurator Configure<TConfigurator>()
where TConfigurator : IUnityContainerExtensionConfigurator
public:
generic<typename TConfigurator>
where TConfigurator : IUnityContainerExtensionConfigurator
virtual TConfigurator Configure() sealed
JScript does not support generic types or methods.

Type Parameters

  • TConfigurator
    The configuration interface required.

Return Value

The requested extension's configuration interface, or null if not found.

Remarks

Extensions can expose configuration interfaces as well as adding strategies and policies to the container. This method walks the list of added extensions and returns the first one that implements the requested type.

See Also

UnityContainerBase Class

Configure Overload

Microsoft.Practices.Unity Namespace