| ServiceLocatorImplBaseDoGetAllInstances Method |
When implemented by inheriting classes, this method will do the actual work of
resolving all the requested service instances.
Namespace: Microsoft.Practices.ServiceLocationAssembly: Microsoft.Practices.ServiceLocation (in Microsoft.Practices.ServiceLocation.dll) Version: 1.3.0.0 (1.3.0.0)
Syntax protected abstract IEnumerable<Object> DoGetAllInstances(
Type serviceType
)
Protected MustOverride Function DoGetAllInstances (
serviceType As Type
) As IEnumerable(Of Object)
protected:
virtual IEnumerable<Object^>^ DoGetAllInstances(
Type^ serviceType
) abstract
abstract DoGetAllInstances :
serviceType : Type -> IEnumerable<Object>
Parameters
- serviceType
- Type: SystemType
Type of service requested.
Return Value
Type:
IEnumerableObjectSequence of service instance objects.
See Also