Skip to main content
A newer version of this page is available. .

IServiceContainer.GetService<T>(String, ServiceSearchMode) Method

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

Namespace: DevExpress.Mvvm

Assembly: DevExpress.Mvvm.v18.2.dll

Declaration

T GetService<T>(
    string key,
    ServiceSearchMode searchMode = ServiceSearchMode.PreferLocal
)
    where T : class

Parameters

Name Type Description
key String

A service identifier.

Optional Parameters

Name Type Default Description
searchMode ServiceSearchMode 0

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