Intersoft ClientUI Documentation
RegisterInstance(Type,Object) Method



The type that is being registered for resolution.
The instance that will alway be returned when TType is resolved. The instance must be assignable to a variable of type TType.
Registers an instance that will be returned whenever the IocContainer resolves the specified type.
Syntax
Public Overloads Function RegisterInstance( _
   ByVal type As Type, _
   ByVal instance As Object _
) As IRegistration
Dim instance As IocContainer
Dim type As Type
Dim instance As Object
Dim value As IRegistration
 
value = instance.RegisterInstance(type, instance)
public IRegistration RegisterInstance( 
   Type type,
   object instance
)
public:
IRegistration^ RegisterInstance( 
   Type^ type,
   Object^ instance
) 

Parameters

type
The type that is being registered for resolution.
instance
The instance that will alway be returned when TType is resolved. The instance must be assignable to a variable of type TType.

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 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also

Reference

IocContainer Class
IocContainer Members
Overload List

Send Feedback