Registers a implementation type to be instantiated when the the specified type is resolved.
Syntax
| Visual Basic (Usage) | Copy Code |
|---|
Dim instance As IocContainer
Dim value As IRegistration
value = instance.Register(Of TType, TImpl)() |
Type Parameters
- TType
- The type to be registered.
- TImpl
- The type that will be instantiated when TType is resolved. The instance is created using the constructor with the most parameters, each parameter is resolved by the container.
Return Value
An instance of IRegistration that can be used to configure how the get information about the registration, or change the lifetime manager.
Requirements
Target Platforms: Windows 98, Windows NT 4.0, Windows Millennium Edition, Windows 2000, Windows XP Home Edition, Windows XP Professional, Windows Server 2003 family, Windows Vista, Windows Server 2008 family
See Also