| 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.IO
Assembly:
Ookii.Jumbo (in Ookii.Jumbo.dll) Version: 2.0.0
Syntax bool 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
- Type: SystemInt64
The first position. - position2
- Type: SystemInt64
The second position.
Return Value
Type:
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