IsValid is called by the profiler to evaluate whether a QueryInformation object fulfills the filter critiera (true) or not.

Namespace: HuagatiEFProfiler.Filters
Assembly: HuagatiEFProfiler (in HuagatiEFProfiler.dll) Version: 1.33.3996.16092

Syntax

C#
public abstract bool IsValid(
	QueryInformation query
)
Visual Basic
Public MustOverride Function IsValid ( _
	query As QueryInformation _
) As Boolean
Visual C++
public:
virtual bool IsValid(
	QueryInformation^ query
) abstract

Parameters

query
Type: HuagatiEFProfiler..::..QueryInformation
The QueryInformation object to evaluate.

Return Value

True if the QueryInformation object fulfills all filter criteria, otherwise false.

See Also