Click or drag to resize

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
)

Parameters

attributes
Type: NetQuarry.DataMapperAttrs
The attribute or attributes to check.

Return Value

Type: Boolean
True if any of the specified attributes are set on the mapper.

Implements

IMapperIsAttrSet(MapperAttrs)
See Also