docs.unity3d.com
Search Results for

    Show / Hide Table of Contents

    Class ServiceProviderExtensions

    Extension methods for IServiceProvider.

    Inheritance
    object
    ServiceProviderExtensions
    Inherited Members
    object.Equals(object)
    object.Equals(object, object)
    object.GetHashCode()
    object.GetType()
    object.MemberwiseClone()
    object.ReferenceEquals(object, object)
    object.ToString()
    Namespace: Unity.AppUI.MVVM
    Assembly: Unity.AppUI.MVVM.dll
    Syntax
    public static class ServiceProviderExtensions

    Methods

    GetRequiredService<T>(IServiceProvider)

    Gets a service from the service provider. Throws an exception if the service is not found.

    Declaration
    public static T GetRequiredService<T>(this IServiceProvider serviceProvider) where T : class
    Parameters
    Type Name Description
    IServiceProvider serviceProvider

    The service provider.

    Returns
    Type Description
    T

    The service.

    Type Parameters
    Name Description
    T

    The type of the service.

    Exceptions
    Type Condition
    ArgumentNullException

    Thrown when serviceProvider is null.

    GetService<T>(IServiceProvider)

    Gets a service from the service provider.

    Declaration
    public static T GetService<T>(this IServiceProvider serviceProvider) where T : class
    Parameters
    Type Name Description
    IServiceProvider serviceProvider

    The service provider.

    Returns
    Type Description
    T

    The service.

    Type Parameters
    Name Description
    T

    The type of the service.

    Exceptions
    Type Condition
    ArgumentNullException

    Thrown when serviceProvider is null.

    In This Article
    Back to top
    Copyright © 2025 Unity Technologies — Trademarks and terms of use
    • Legal
    • Privacy Policy
    • Cookie Policy
    • Do Not Sell or Share My Personal Information
    • Your Privacy Choices (Cookie Settings)