Intersoft ClientUI Documentation
Register(Type,Type) Method
See Also  Send Feedback
Intersoft.Client.Framework.Containers Namespace > IocContainer Class > Register Method : Register(Type,Type) Method






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.
Registers a implementation type to be instantiated when the the specified type is resolved.

Syntax

Visual Basic (Declaration) 
Public Overloads Function Register( _
   ByVal tType As Type, _
   ByVal tImpl As Type _
) As IRegistration
Visual Basic (Usage)Copy Code
Dim instance As IocContainer
Dim tType As Type
Dim tImpl As Type
Dim value As IRegistration
 
value = instance.Register(tType, tImpl)
C# 
public IRegistration Register( 
   Type tType,
   Type tImpl
)
Delphi 
public function Register( 
    tType: Type;
    tImpl: Type
): IRegistration; 
JScript 
public function Register( 
   tType : Type,
   tImpl : Type
) : IRegistration;
Managed Extensions for C++ 
public: IRegistration* Register( 
   Type* tType,
   Type* tImpl
) 
C++/CLI 
public:
IRegistration^ Register( 
   Type^ tType,
   Type^ tImpl
) 

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

© 2012 All Rights Reserved.