Xunit.Reporting.Internal.Assembly.AllTypesMatching C# (CSharp) Метод

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
        public IEnumerable<Type> AllTypesMatching(Func<Type, bool> predicate)
        {
            Debug.Assert(predicate != null);

            return _assembly.GetExportedTypes().Where(predicate);
        }