Click or drag to resize
Formatter Delegate
Formats the positionth column in the IDataRecord into the given XmlWriter.

Namespace: Activsoft.Engine
Assembly: Activsoft.Engine (in Activsoft.Engine.dll) Version: 6.0.0.0
Syntax
public delegate void Formatter(
	IDataRecord rs,
	int position,
	XmlWriter output,
	Config monConfig,
	bool forceColumnsToUpper,
	Dictionary<string, IFormatterFactory> formatters
)

Parameters

rs
Type: System.DataIDataRecord
The IDataRecord to read data from.
position
Type: SystemInt32
The position of the column to read.
output
Type: System.XmlXmlWriter
The output to write into.
monConfig
Type: Activsoft.EngineConfig
The Config instance.
forceColumnsToUpper
Type: SystemBoolean
if set to true, you must force the column names to uppercase.
formatters
Type: System.Collections.GenericDictionaryString, IFormatterFactory
The defined formatters.
See Also