Enum ValuesRetrievalMethod
- Namespace
- Gamelogic.Extensions
- Assembly
- Gamelogic.Extensions.dll
How the values for the popup list should be retrieved.
[Version(4, 3, 0)]
public enum ValuesRetrievalMethod
- Extension Methods
Fields
Func = 2
Retrieved calling a Func<TResult>.
FuncKey = 0
Retrieved by calling a Func<TResult> registered with RegisterValuesRetriever<T>(string, Func<IEnumerable<T>>) using a key.
Other = 3
Retrieved using a different method.
ValueList = 1
Retrieved directly from a list of values.