Interface IServiceLocator
- Namespace
- Savvyio.Dispatchers
- Assembly
- Savvyio.Core.dll
Provides a generic way to locate implementations of service objects.
public interface IServiceLocator
Methods
GetServices(Type)
Get an enumeration of services of type serviceType
.
IEnumerable<object> GetServices(Type serviceType)
Parameters
serviceType
TypeAn object that specifies the type of service object to get.
Returns
- IEnumerable<Object>
An enumeration of services of type
serviceType
.