Click or drag to resize

ReaderFindAllT Method

Get an enumerator that iterates all data nodes in the database. Do not modify the object as it may be cached. Note that due to caching, the Network attribute on constructor parameters will be ignored.

Namespace:  MaxMind.Db
Assembly:  MaxMind.Db (in MaxMind.Db.dll) Version: 2.6.1
Syntax
public IEnumerable<ReaderReaderIteratorNode<T>> FindAll<T>(
	InjectableValues injectables = null,
	int cacheSize = 16384
)
where T : class

Parameters

injectables (Optional)
Type: MaxMind.DbInjectableValues
Value to inject during deserialization
cacheSize (Optional)
Type: SystemInt32
The size of the data cache. This can greatly speed enumeration at the cost of memory usage.

Type Parameters

T

Return Value

Type: IEnumerableReaderReaderIteratorNodeT
Enumerator for all data nodes
See Also