Skip to content

IServiceDescriptorAssemblySelector Interface

Definition

The compiled assembly selector

C#
public interface IServiceDescriptorAssemblySelector

Methods

EntryAssembly()

Will scan for types from this assembly at compile time.

C#
IServiceDescriptorTypeSelector EntryAssembly()

Returns

IServiceDescriptorTypeSelector

FromAssemblies()

Will scan for types from all metadata assembly at compile time.

C#
IServiceDescriptorTypeSelector FromAssemblies()

Returns

IServiceDescriptorTypeSelector

DependenciesFromAssemblyOf<T>()

Will load and scan from given types assembly

C#
IServiceDescriptorTypeSelector DependenciesFromAssemblyOf<T>()

Returns

IServiceDescriptorTypeSelector

DependenciesFromAssemblyOf(Type)

Will load and scan from given types assembly

C#
IServiceDescriptorTypeSelector DependenciesFromAssemblyOf(Type type)

Parameters

type Type

Returns

IServiceDescriptorTypeSelector

FromAssemblyOf<T>()

Will scan for types from the assembly of type T.

C#
IServiceDescriptorTypeSelector FromAssemblyOf<T>()

Returns

IServiceDescriptorTypeSelector

FromAssemblyOf(Type)

Will scan for types from the assembly of type.

C#
IServiceDescriptorTypeSelector FromAssemblyOf(Type type)

Parameters

type Type

Returns

IServiceDescriptorTypeSelector

NotFromAssemblyOf<T>()

Will not scan for types from the assembly of type T.

C#
IServiceDescriptorTypeSelector NotFromAssemblyOf<T>()

Returns

IServiceDescriptorTypeSelector

NotFromAssemblyOf(Type)

Will not scan for types from the assembly of type.

C#
IServiceDescriptorTypeSelector NotFromAssemblyOf(Type type)

Parameters

type Type

Returns

IServiceDescriptorTypeSelector

IncludeSystemAssemblies()

Include system assemblies

C#
IServiceDescriptorTypeSelector IncludeSystemAssemblies()

Returns

IServiceDescriptorTypeSelector