Five New Optimizely Certifications are Here! Validate your expertise and advance your career with our latest certification exams. Click here to find out more

Interface IAssemblyScanner

Scans for types that defined by TypeScannerRegistrationAttribute

Namespace: EPiServer.Framework.TypeScanner.Internal
Assembly: EPiServer.Framework.dll
Version: 12.0.3
Syntax
public interface IAssemblyScanner
Remarks

You should use ITypeScannerLookup to get hold of all scanned types rather than doing your own scan which is costly

Methods

Configure(IEnumerable<Assembly>)

Declaration
void Configure(IEnumerable<Assembly> assemblies)
Parameters
Type Name Description
System.Collections.Generic.IEnumerable<System.Reflection.Assembly> assemblies

GetTypes(Assembly)

Declaration
IEnumerable<Type> GetTypes(Assembly assembly)
Parameters
Type Name Description
System.Reflection.Assembly assembly
Returns
Type Description
System.Collections.Generic.IEnumerable<System.Type>

Save()

Declaration
void Save()

Extension Methods