Click or drag to resize

PFSExtensions.AddKeywordValues Method

Define a keyword, and adds a number of default type of parameters. A convenience method that will call the appropriate Add method for the provided type.

Each parameter must be one of the types:

It can not handle filenames and CLOBs.

Restrictions: This function must be called within the scope of a section.

Namespace:  DHI.PFS
Assembly:  DHI.PFS (in DHI.PFS.dll) Version: 19.0.0.0 (11.1.1.1111)
Syntax
public static void AddKeywordValues(
	this IPFSBuilder builder,
	string keyName,
	params Object[] values
)

Parameters

builder
Type: DHI.PFS.IPFSBuilder
Builder to add keywords to
keyName
Type: System.String
Name of keyword to add
values
Type:System.Object[]
Values/parameters for keyword

Usage Note

In Visual Basic and C#, you can call this method as an instance method on any object of type IPFSBuilder. When you use instance method syntax to call this method, omit the first parameter. For more information, see Extension Methods (Visual Basic) or Extension Methods (C# Programming Guide).
See Also