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
serviceTypeTypeAn object that specifies the type of service object to get.
Returns
- IEnumerable<object>
An enumeration of services of type
serviceType.