Skip to main content

ServiceContainer.GetService<T>(ServiceSearchMode) Method

Performs a search for a service implementing the specified service interface.

Namespace: DevExpress.Mvvm

Assembly: DevExpress.Mvvm.v23.2.dll

NuGet Packages: DevExpress.Mvvm, DevExpress.Win.Navigation

Declaration

public T GetService<T>(
    ServiceSearchMode searchMode = ServiceSearchMode.PreferLocal
)
    where T : class

Optional Parameters

Name Type Default Description
searchMode ServiceSearchMode PreferLocal

A ServiceSearchMode enumeration value.

Type Parameters

Name
T

Returns

Type Description
T

An object implementing the specified service interface.

Remarks

To learn more, see Services in custom ViewModels.

See Also