  | IRecordInputStreamAreInsideSameBoundary Method | 
            Determines whether the range between two specified positions does not cross a structural boundary (e.g. a block boundary on the DFS).
            
Namespace: Ookii.Jumbo.IOAssembly: Ookii.Jumbo (in Ookii.Jumbo.dll) Version: 0.3.0+dc1307f20e065bb638e0b73a34cd216f57e486f1
Syntaxbool AreInsideSameBoundary(
	long position1,
	long position2
)
Function AreInsideSameBoundary ( 
	position1 As Long,
	position2 As Long
) As Boolean
bool AreInsideSameBoundary(
	long long position1, 
	long long position2
)
abstract AreInsideSameBoundary : 
        position1 : int64 * 
        position2 : int64 -> bool Parameters
- position1  Int64
 - The first position.
 - position2  Int64
 - The second position.
 
Return Value
Boolean if the 
position1 and 
position2 fall inside the same boundaries (e.g. if
                both positions are in the same block in the DFS); otherwise, 
.
            
See Also