ArcGISRuntimeXamarin.Samples.DisplayLayerViewState.LayerViewStatusTableSource.RowsInSection C# (CSharp) Method

RowsInSection() public method

Called by the TableView to determine how many cells to create for that particular section.
public RowsInSection ( UITableView tableview, nint section ) : nint
tableview UITableView
section nint
return nint
        public override nint RowsInSection(UITableView tableview, nint section)
        {
            return _layers != null?_layers.Count:0;
        }