Click or drag to resize
DigitalRuneDelegatePairFilter<T>.Filter Method
Filters the specified item pair.

Namespace: DigitalRune.Geometry.Partitioning
Assembly: DigitalRune.Geometry (in DigitalRune.Geometry.dll) Version: 1.18.0.0 (1.18.2.14427)
Syntax
public bool Filter(
	Pair<T> pair
)

Parameters

pair
Type: DigitalRune.Collections.Pair<T>
The pair.

Return Value

Type: Boolean
true if the pair should be processed (pair is accepted); otherwise, false if the pair should not be processed (pair is rejected).

Implements

IPairFilter<T>.Filter(Pair<T>)
Remarks
This method returns true if no FilterCallback is set; otherwise the filter callback is called and its result is returned.
See Also