Version

RegisterService(String,Object) Method

Registers a service with a case-sensitively unique string key.
Syntax
'Declaration
 
Public Overloads Sub RegisterService( _
   ByVal serviceKey As String, _
   ByVal service As Object _
) 
public void RegisterService( 
   string serviceKey,
   object service
)

Parameters

serviceKey
The case-sensitively unique string key of the service to register.
service
The service instance to register.
Exceptions
ExceptionDescription
System.ArgumentNullExceptionOccurs when the specified serviceKey is null or empty.
System.ArgumentNullExceptionOccurs when the specified service is null.
Remarks

Each non-core service must be registered with a case-sensitively unique string key. There are no requirements on the format of the key.

Requirements

Target Platforms: Windows 10, Windows 8.1, Windows 8, Windows 7, Windows Server 2012, 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