Click or drag to resize
PFSDllWrapperpfsAddKeywordFilename Method
Define a keyword, ie the start of a parameter list, within the scope of a target, and add a filename parameter.

This is similar to calling first pfsAddKeyword(IntPtr, String) followed by pfsAddFilename(IntPtr, String)

Namespace: DHI.PFS
Assembly: DHI.PFS (in DHI.PFS.dll) Version: 16.0.0.0 (11.1.1.1111)
Syntax
public static void pfsAddKeywordFilename(
	IntPtr handle,
	string keywordName,
	string filename
)

Parameters

handle
Type: SystemIntPtr
A pfsHandle pointer
keywordName
Type: SystemString
Name of keyword to add.
filename
Type: SystemString
Filename to add
Remarks
This function is used to define the start of a list of parameters. It has no counterpart, ie the usage is different from that of pfsAddSection, which requires a terminating pfsEndSection. Restrictions: This function must be called within the scope of a target.
See Also