MapperKernelIsAttrSet Method |
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.Mapper (in EAP.Mapper.dll) Version: 2.0.0.0 (4.6.8.0)
Syntax public bool IsAttrSet(
MapperAttrs attributes
)
Public 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.
Implements
IMapperIsAttrSet(MapperAttrs)See Also