Click or drag to resize

PFQueryCheckFieldsAvailability Method

Checks if the fields used in this query are available in the specified parent, given a list of available fields.

Namespace:  Packflow.Core
Assembly:  MicaSystems.Packflow.Core (in MicaSystems.Packflow.Core.dll) Version: 1.0.0.0 (3.2.0.306)
Syntax
C#
public List<KeyValuePair<PFQueryFieldUse, string>> CheckFieldsAvailability(
	Guid parentGuid,
	IEnumerable<string> fieldNames,
	bool ignoreSelectionAvailability = false
)

Parameters

parentGuid
Type: SystemGuid
The parent GUID.
fieldNames
Type: System.Collections.GenericIEnumerableString
The names of available fields.
ignoreSelectionAvailability (Optional)
Type: SystemBoolean
Ignore the availability check for selected (displayed) fields.

Return Value

Type: ListKeyValuePairPFQueryFieldUse, String
[!:List<KeyValuePair<PFQueryFieldUse, String>>] The list of fields used by the query and not found in the parent.
See Also