Class NamedTypeSelector
Used to represent a named type selector.
Inheritance
System.Object
NamedTypeSelector
Namespace: Volo.Abp
Assembly: Volo.Abp.Core.dll
Syntax
public class NamedTypeSelector : object
Constructors
NamedTypeSelector(String, Func<Type, Boolean>)
Creates new NamedTypeSelector object.
Declaration
public NamedTypeSelector(string name, Func<Type, bool> predicate)
Parameters
| Type | Name | Description |
|---|---|---|
| System.String | name | Name |
| Func<Type, System.Boolean> | predicate | Predicate |
Properties
Name
Name of the selector.
Declaration
public string Name { get; set; }
Property Value
| Type | Description |
|---|---|
| System.String |
Predicate
Predicate.
Declaration
public Func<Type, bool> Predicate { get; set; }
Property Value
| Type | Description |
|---|---|
| Func<Type, System.Boolean> |