ControllerStandardDataItemClassIndexGetView Method (ListViewConfig, String, 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(
out ListViewConfig pViewConfig,
string pViewName,
Dictionary<string, string> pDictionaryUI = null
)
Public Overridable Function IndexGetView (
<OutAttribute> ByRef pViewConfig As ListViewConfig,
pViewName As String,
Optional pDictionaryUI As Dictionary(Of String, String) = Nothing
) As List(Of Object)
Parameters
- pViewConfig
- Type: SOWIData.ManagementListViewConfig
Setting of data list - pViewName
- Type: SystemString
View name e.b. Index - pDictionaryUI (Optional)
- Type: System.Collections.GenericDictionaryString, String
User interface dictionary
Return Value
Type:
ListObjectA data list
Examples
Programming example when overriding this method
return this.AppTicket.GetViewSimple(out pViewConfig, pViewName, pDictionaryUI);
An example to convert to type of object
var lListObject = (lList as IEnumerable<object>).Cast<object>().ToList();
See Also