ControllerStandardDataItemClassIndexGetView Method (ListViewConfig, DictionaryString, String) | |
Gives a data list.
Called method GetView from his App
Namespace:
SOWIWeb.Helper
Assembly:
SOWIWeb.Helper (in SOWIWeb.Helper.dll) Version: 19.1.23.1 (19.1.23.622)
Syntax public virtual List<Object> IndexGetView(
ref ListViewConfig pViewConfig,
Dictionary<string, string> pDictionaryUI = null
)
Public Overridable Function IndexGetView (
ByRef pViewConfig As ListViewConfig,
Optional pDictionaryUI As Dictionary(Of String, String) = Nothing
) As List(Of Object)
Parameters
- pViewConfig
- Type: SOWIData.ManagementListViewConfig
Setting of data list (by ref) - pDictionaryUI (Optional)
- Type: System.Collections.GenericDictionaryString, String
User interface dictionary
Return Value
Type:
ListObjectA data list
Examples
Programming example when overriding this method
return base.IndexGetView(ref pViewConfig, pDictionaryUI);
An example to convert to type of object
var lListObject = (lList as IEnumerable<object>).Cast<object>().ToList();
See Also