| PredicateExtOr Method |
Namespace:
Hazelcast.Core
Assembly:
Hazelcast.Net (in Hazelcast.Net.dll) Version: 3.9.3
Syntax public static OrPredicate Or(
this IPredicate firstPredicate,
IPredicate secondPredicate
)
<ExtensionAttribute>
Public Shared Function Or (
firstPredicate As IPredicate,
secondPredicate As IPredicate
) As OrPredicate
public:
[ExtensionAttribute]
static OrPredicate^ Or(
IPredicate^ firstPredicate,
IPredicate^ secondPredicate
)
[<ExtensionAttribute>]
static member Or :
firstPredicate : IPredicate *
secondPredicate : IPredicate -> OrPredicate
Parameters
- firstPredicate
- Type: Hazelcast.CoreIPredicate
- secondPredicate
- Type: Hazelcast.CoreIPredicate
Return Value
Type:
OrPredicateUsage Note
In Visual Basic and C#, you can call this method as an instance method on any object of type
IPredicate. 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