Determines if a particular attribute (or any of a set of attributes) is set.
Note that this is a shorthand for the expression (0 != (mapper.Attributes & attributes)) (C#)
or (0 <> (mapper.Attributes Or attributes)) (VB).
Namespace:
NetQuarry.Data
Assembly:
EAP.Core (in EAP.Core.dll) Version: 2.0.0.0 (4.6.8.0)
Syntaxbool IsAttrSet(
MapperAttrs attributes
)
Function IsAttrSet (
attributes As MapperAttrs
) As Boolean
Parameters
- attributes
- Type: NetQuarry.DataMapperAttrs
The attribute or attributes to check.
Return Value
Type:
BooleanTrue if any of the specified attributes are set on the mapper.
See Also