Skip to main content

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

UIServiceContainerExtensions.GetService<T>(IUIServiceContainer, String) Method

Gets the service from the specified IUIServiceContainer.

Namespace: DevExpress.Maui.Mvvm

Assembly: DevExpress.Maui.Mvvm.dll

NuGet Package: DevExpress.Maui.Mvvm

#Declaration

C#
public static T GetService<T>(
    this IUIServiceContainer container,
    string key = null
)
    where T : class

#Parameters

Name Type Description
container IUIServiceContainer

The source container that hosts services.

#Optional Parameters

Name Type Default Description
key String null

The key that identifies the specific service instance when multiple services of the same type are registered.

#Type Parameters

Name Description
T

The service type.

#Returns

Type Description
T

The requested service as the object of the T type.

See Also