Table of Contents

Class NamedFilter

Namespace
GroupeIsa.Neos.Designer.UIAbstractions
Assembly
GroupeIsa.Neos.Designer.UIAbstractions.dll

Represents a named filter.

[ExcludeFromCodeCoverage]
public class NamedFilter
Inheritance
NamedFilter
Inherited Members

Constructors

NamedFilter(string, string, Func<Task<Filter>>)

Initializes a new instance of the NamedFilter class.

public NamedFilter(string id, string name, Func<Task<Filter>> getFilterAsync)

Parameters

id string

Id.

name string

Name.

getFilterAsync Func<Task<Filter>>

Function to get the filter.

Properties

GetFilterAsync

Gets the function to get the filter.

public Func<Task<Filter>> GetFilterAsync { get; }

Property Value

Func<Task<Filter>>

Id

Gets the identifier.

public string Id { get; }

Property Value

string

Name

Gets the name.

public string Name { get; }

Property Value

string