Table of Contents

Constructor PopupListData

Namespace
Gamelogic.Extensions
Assembly
Gamelogic.Extensions.dll

PopupListData(string)

Creates a new instance of PopupListData<T> that stores the list retriever key.

public PopupListData(string valuesRetrieverKey)

Parameters

valuesRetrieverKey string

The key of the list retriever used to retrieve the list of values for this popup list.

Remarks

PopupListData(T[])

Creates a new instance of PopupListData<T> that stores the given list of values.

public PopupListData(T[] values)

Parameters

values T[]

The list of values for this popup list.

Remarks

PopupListData(Func<IEnumerable<T>>)

Initializes a new instance of the PopupListData<T> class stores the given function to retrieve the list of values.

public PopupListData(Func<IEnumerable<T>> listRetriever)

Parameters

listRetriever Func<IEnumerable<T>>

The function used to retrieve the list of values for this popup list.

Remarks

ValuesRetrievalMethod will be set to Func.