SearchConditionsExtenderIsMatch Method

Return true if there is conditions and they all match.

Definition

Namespace: MFiles.VAF.Common
Assembly: MFiles.VAF (in MFiles.VAF.dll) Version: 24.1.706.1
C#
public static bool IsMatch(
	this SearchConditionsJA scja,
	ObjVerEx objVerEx,
	bool equalsNullIsMissing = false,
	int userId = -100
)

Parameters

scja  SearchConditionsJA
The search conditions object that is used as "this".
objVerEx  ObjVerEx
Object whose properties are checked
equalsNullIsMissing  Boolean  (Optional)
true for matching Equal == Null to also when the property is missing.
userId  Int32  (Optional)
UserID of the current user.

Return Value

Boolean
True when the objects matches the filter.

Usage Note

In Visual Basic and C#, you can call this method as an instance method on any object of type SearchConditionsJA. When you use instance method syntax to call this method, omit the first parameter. For more information, see Extension Methods (Visual Basic) or Extension Methods (C# Programming Guide).

See Also