PowerArgs.Cli.CollectionDataView.CollectionDataView C# (CSharp) Method

CollectionDataView() public method

public CollectionDataView ( List items, bool isCompletelyLoaded, bool isEndOfData, int rowOffset ) : System.Collections.Generic
items List
isCompletelyLoaded bool
isEndOfData bool
rowOffset int
return System.Collections.Generic
        public CollectionDataView(List<object> items, bool isCompletelyLoaded, bool isEndOfData, int rowOffset)
        {
            this.Items = items.AsReadOnly();
            this.IsViewComplete = isCompletelyLoaded;
            this.IsViewEndOfData = isEndOfData;
            this.RowOffset = rowOffset;
        }