C# Class FiftyOne.Foundation.Mobile.Detection.Entities.Stream.IntegerList

Inheritance: ISimpleList
Mostra file Open project: 51Degrees/dotNET-Device-Detection

Protected Properties

Property Type Description
_dataSet DataSet

Public Methods

Method Description
GetRange ( int index, int count ) : IList

Returns the values in the list starting at the index provided.

this ( int index ) : int

Returns the value in the list at the index provided.

Private Methods

Method Description
IntegerList ( DataSet dataSet, Reader reader ) : System.Collections.Generic

Constructs a new instance of IntegerList ready to read entities from the source.

Method Details

GetRange() public method

Returns the values in the list starting at the index provided.
public GetRange ( int index, int count ) : IList
index int /// First index of the range required. ///
count int /// Number of elements to return. ///
return IList

this() public method

Returns the value in the list at the index provided.
public this ( int index ) : int
index int Index of the value required.
return int

Property Details

_dataSet protected_oe property

The dataset which contains the list.
protected DataSet,FiftyOne.Foundation.Mobile.Detection.Entities.Stream _dataSet
return DataSet