IKeyedServiceProvider.GetRequiredKeyedService(Type, Object) Method

Definition

Gets service of type serviceType from the IServiceProvider implementing this interface.

public:
 System::Object ^ GetRequiredKeyedService(Type ^ serviceType, System::Object ^ serviceKey);
public object GetRequiredKeyedService (Type serviceType, object? serviceKey);
abstract member GetRequiredKeyedService : Type * obj -> obj
Public Function GetRequiredKeyedService (serviceType As Type, serviceKey As Object) As Object

Parameters

serviceType
Type

An object that specifies the type of service object to get.

serviceKey
Object

The ServiceKey of the service.

Returns

A service object of type serviceType. Throws an exception if the IServiceProvider cannot create the object.

Applies to