Table of Contents

Interface IReadOnlyEntityViewParameters

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

Represents a read-only collection of entity view parameters.

public interface IReadOnlyEntityViewParameters

Methods

TryGetParameterValue(string, out object?)

Tries to get a parameter value.

bool TryGetParameterValue(string parameterName, out object? value)

Parameters

parameterName string

The parameter name.

value object

The value if a value exists for the parameter.

Returns

bool

True if the value was found, false otherwise.

TryGetParameterValue<TValue>(string, out TValue?)

Tries to get a parameter value.

bool TryGetParameterValue<TValue>(string parameterName, out TValue? value)

Parameters

parameterName string

The parameter name.

value TValue

The value if a value exists for the parameter.

Returns

bool

True if the value was found, false otherwise.

Type Parameters

TValue

Value type.