ActivatorUtilities.CreateInstance Method

Definition

Overloads

CreateInstance(IServiceProvider, Type, Object[])

Instantiates a type with constructor arguments provided directly and/or from an IServiceProvider.

CreateInstance<T>(IServiceProvider, Object[])

Instantiates a type with constructor arguments provided directly and/or from an IServiceProvider.

CreateInstance(IServiceProvider, Type, Object[])

Source:
ActivatorUtilities.cs
Source:
ActivatorUtilities.cs
Source:
ActivatorUtilities.cs

Instantiates a type with constructor arguments provided directly and/or from an IServiceProvider.

C#
public static object CreateInstance(IServiceProvider provider, Type instanceType, params object[] parameters);

Parameters

provider
IServiceProvider

The service provider used to resolve dependencies.

instanceType
Type

The type to activate.

parameters
Object[]

Constructor arguments not provided by the provider.

Returns

An activated object of type instanceType.

Exceptions

.NET 8 and later only: provider is null.

Applies to

.NET 10 (package-provided) and other versions
Product Versions
.NET 8 (package-provided), 9 (package-provided), 10 (package-provided)
.NET Standard 2.0 (package-provided), 2.1 (package-provided)

CreateInstance<T>(IServiceProvider, Object[])

Source:
ActivatorUtilities.cs
Source:
ActivatorUtilities.cs
Source:
ActivatorUtilities.cs

Instantiates a type with constructor arguments provided directly and/or from an IServiceProvider.

C#
public static T CreateInstance<T>(IServiceProvider provider, params object[] parameters);

Type Parameters

T

The type to activate.

Parameters

provider
IServiceProvider

The service provider used to resolve dependencies.

parameters
Object[]

Constructor arguments not provided by provider.

Returns

T

An activated object of type T.

Exceptions

.NET 8 and later only: provider is null.

Applies to

.NET 10 (package-provided) and other versions
Product Versions
.NET 8 (package-provided), 9 (package-provided), 10 (package-provided)
.NET Standard 2.0 (package-provided), 2.1 (package-provided)