Table of Contents

Class FilterValue

Namespace
GroupeIsa.Neos.Application.Filters
Assembly
GroupeIsa.Neos.Application.Abstractions.dll

Represents the value for a criterion of a filter.

public class FilterValue
Inheritance
FilterValue
Inherited Members

Constructors

FilterValue(FilterOperation)

Initializes a new instance of the FilterValue class.

public FilterValue(FilterOperation operation)

Parameters

operation FilterOperation

The operation to invoke.

FilterValue(FilterOperation, params object?[])

Initializes a new instance of the FilterValue class.

public FilterValue(FilterOperation operation, params object?[] arguments)

Parameters

operation FilterOperation

The operation to invoke.

arguments object[]

The values associated with the operation.

Properties

Args

Gets the arguments associated with the operation.

public IList<object?> Args { get; }

Property Value

IList<object>

Operation

Gets the operation to invoke.

public FilterOperation Operation { get; }

Property Value

FilterOperation