Click or drag to resize

Categorizer Delegate

Encapsulates a method that assigns a category label to a numerical value having the specified string representation in a specific culture.

Namespace:  Novacta.Analytics
Assembly:  Novacta.Analytics (in Novacta.Analytics.dll) Version: 2.0.0
Syntax
public delegate string Categorizer(
	string token,
	IFormatProvider provider
)

Parameters

token
Type: SystemString
The string representing a value to be categorized.
provider
Type: SystemIFormatProvider
An object that provides formatting information to parse numeric values.

Return Value

Type: String
The category label assigned to the value.
Remarks

Objects of type Categorizer can be used to define how a CategoricalDataSet should be encoded when reading numerical data from a stream of characters.

See Also