MapperUtilsMonitoredFieldsDirty Method |
Compares the set of dirty fields in the provided mapper with a semi-colon delimited list of fields to monitor.
Namespace:
NetQuarry.Data
Assembly:
EAP.Mapper (in EAP.Mapper.dll) Version: 2.0.0.0 (4.6.8.0)
Syntax public static bool MonitoredFieldsDirty(
IMapper sender,
string monitoredFields,
out string dirtyMonitoredFields
)
Public Shared Function MonitoredFieldsDirty (
sender As IMapper,
monitoredFields As String,
<OutAttribute> ByRef dirtyMonitoredFields As String
) As Boolean
Parameters
- sender
- Type: NetQuarry.DataIMapper
The mapper - monitoredFields
- Type: SystemString
A semi-colon delimited list of fields in the mapper to monitor for dirtiness - dirtyMonitoredFields
- Type: SystemString
A semi-colon delimited list of dirty fields that represents the intersection between the fields that are dirty in the mapper and the liste of fields to monitor in the monitoredFields parameter.
Return Value
Type:
BooleanReturns true if any of the monitored fields are detected as dirty on the mapper. Otherwise returns false
See Also