Create an iterator over the space using the specified template(s) and settings.
            
| C# | Visual Basic | Visual C++ | J# | 
ISpaceIterator<T> GetSpaceIterator<T>( IQuery<T> query, IteratorScope iteratorScope, int bufferSize, long leaseTime )
Function GetSpaceIterator(Of T) ( _ query As IQuery(Of T), _ iteratorScope As IteratorScope, _ bufferSize As Integer, _ leaseTime As Long _ ) As ISpaceIterator(Of T)
generic<typename T> ISpaceIterator<T>^ GetSpaceIterator( IQuery<T>^ query, IteratorScope iteratorScope, int bufferSize, long long leaseTime )
- T
 - Type of object to read.
 
- query (IQuery<(Of <(T>)>))
 - The query used for matching.
 
- iteratorScope (IteratorScope)
 - Scope for iterator matching.
 
- bufferSize (Int32)
 - The maximum number of objects to pool each time from the space.
 
- leaseTime (Int64)
 - The requested initial lease time on the resulting match set
 
A configured space iterator.
| Exception | Condition | 
|---|---|
| InactiveSpaceException | The space is in backup mode and therefore is not active. | 
| SqlQueryException | The query template is an illegal SqlQuery. | 
