C# Класс Xunit.Reporting.Internal.Assembly

A simple wrapper class around System.Reflection.Assembly for the sake of testability.
Наследование: IAssembly
Показать файл Открыть проект Примеры использования класса

Открытые методы

Метод Описание
AllTypesMatching ( bool>.Func predicate ) : IEnumerable

Collects all exported types of the assembly matching the predicate specified via predicate.

This method never returns null.

Assembly ( System assembly ) : System

Creates a new instance of the Assembly class.

Описание методов

AllTypesMatching() публичный Метод

Collects all exported types of the assembly matching the predicate specified via predicate.
This method never returns null.
public AllTypesMatching ( bool>.Func predicate ) : IEnumerable
predicate bool>.Func /// Specifies a predicate that evaluates each exported type in the assembly. ///
Результат IEnumerable

Assembly() публичный Метод

Creates a new instance of the Assembly class.
public Assembly ( System assembly ) : System
assembly System /// Specifies the which is wrapped. ///
Результат System