Skip to content

IReflectionAssemblySelector Interface

Definition

The compiled assembly selector

C#
public interface IReflectionAssemblySelector

Methods

EntryAssembly()

Will scan for types from this assembly at compile time.

C#
IReflectionTypeSelector EntryAssembly()

Returns

IReflectionTypeSelector

FromAssemblies()

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

C#
IReflectionTypeSelector FromAssemblies()

Returns

IReflectionTypeSelector

DependenciesFromAssemblyOf<T>()

Will load and scan from given types assembly

C#
IReflectionTypeSelector DependenciesFromAssemblyOf<T>()

Returns

IReflectionTypeSelector

DependenciesFromAssemblyOf(Type)

Will load and scan from given types assembly

C#
IReflectionTypeSelector DependenciesFromAssemblyOf(Type type)

Parameters

type Type

Returns

IReflectionTypeSelector

FromAssemblyOf<T>()

Will scan for types from the assembly of type T.

C#
IReflectionTypeSelector FromAssemblyOf<T>()

Returns

IReflectionTypeSelector

FromAssemblyOf(Type)

Will scan for types from the assembly of type.

C#
IReflectionTypeSelector FromAssemblyOf(Type type)

Parameters

type Type

Returns

IReflectionTypeSelector

NotFromAssemblyOf<T>()

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

C#
IReflectionTypeSelector NotFromAssemblyOf<T>()

Returns

IReflectionTypeSelector

NotFromAssemblyOf(Type)

Will not scan for types from the assembly of type.

C#
IReflectionTypeSelector NotFromAssemblyOf(Type type)

Parameters

type Type

Returns

IReflectionTypeSelector

IncludeSystemAssemblies()

Include system assemblies

C#
IReflectionTypeSelector IncludeSystemAssemblies()

Returns

IReflectionTypeSelector