Table of Contents

Class SelectedObjectsRetrievalOptions<T>

Namespace
Kentico.Xperience.Admin.Base.Forms
Assembly
Kentico.Xperience.Admin.Base.dll

Aggregates options for selected objects retrieval.

public sealed class SelectedObjectsRetrievalOptions<T>

Type Parameters

T

Denotes a type of Value property.

Inheritance
object
SelectedObjectsRetrievalOptions<T>
Extension Methods

Properties

IdentifierColumn

The column name used to identify the object.

public string IdentifierColumn { get; init; }

Property Value

string

ItemValueExtractor

A method delegate which extracts value element object from a source data.

public ObjectValueExtractor<T> ItemValueExtractor { get; init; }

Property Value

ObjectValueExtractor<T>

ObjectType

Object type.

public string ObjectType { get; init; }

Property Value

string

SelectedObjectsIdentifiers

A collection of selected object identifiers.

public IEnumerable<string> SelectedObjectsIdentifiers { get; init; }

Property Value

IEnumerable<string>

See Also