PFSDllWrapperpfsEquivalent Method |
To indicate if the contents of two parameter objects are equivalent.
Namespace: DHI.PFSAssembly: DHI.PFS (in DHI.PFS.dll) Version: 16.0.0.0 (11.1.1.1111)
Syntax public static bool pfsEquivalent(
IntPtr template,
IntPtr candidate,
int options
)
Public Shared Function pfsEquivalent (
template As IntPtr,
candidate As IntPtr,
options As Integer
) As Boolean
public:
static bool pfsEquivalent(
IntPtr template,
IntPtr candidate,
int options
)
static member pfsEquivalent :
template : IntPtr *
candidate : IntPtr *
options : int -> bool
Parameters
- template
- Type: SystemIntPtr
A pfsNode pointer, template- parameter to be compared - candidate
- Type: SystemIntPtr
A pfsNode pointer, candidate- parameter to be compared - options
- Type: SystemInt32
Indicate the level of strictness used in the comparison. It is currently inactive - a strict one-to-one criterion applies.
Return Value
Type:
BooleanRemarks
The function is intended as a high level validation to compare a parameter
file (the candidate) with the requirements of a specific application (the template).
The Template and Candidate parameters represent parts of a parameters object
to be compared, eg target vs target, or section vs section. Any subtree of a
parameter structure may be used for comparison.
See Also