ServicesContainer.GetServiceInstances Method (Type)

 

Gets a mutable list of service instances of a specified type.

Namespace:   System.Web.Http.Controllers
Assembly:  System.Web.Http (in System.Web.Http.dll)

Syntax

protected abstract List<object> GetServiceInstances(
    Type serviceType
)
protected:
virtual List<Object^>^ GetServiceInstances(
    Type^ serviceType
) abstract
abstract GetServiceInstances : 
        serviceType:Type -> List<Object>
Protected MustOverride Function GetServiceInstances (
    serviceType As Type
) As List(Of Object)

Parameters

Return Value

Type: System.Collections.Generic.List<Object>

A mutable list of service instances.

See Also

ServicesContainer Class
System.Web.Http.Controllers Namespace

Return to top