Update the field name mappings. This remaps the field names in the predicate expression. This entirely replaces any previous field mappings applied.


Namespace: NetricsServerInterface
Assembly: NetricsServerInterface (in NetricsServerInterface.dll)

Syntax

Visual Basic (Declaration)
Public Function setFieldNames( _ 
   ByVal field_map As Dictionary(Of String, String) _ 
) As NetricsPredicateMapper
C#
public NetricsPredicateMapper setFieldNames(
   Dictionary<string, string> field_map
)
C++
public:
 NetricsPredicateMapper setFieldNames(
   Dictionary<string, string> field_map
) sealed 
J#
public NetricsPredicateMapper setFieldNames(
   Dictionary<string, string> field_map
)
JScript
public  function setFieldNames(
   field_map : Dictionary<string, string>
) : NetricsPredicateMapper

Parameters

field_map
A mapping where the key is the original field name and the value is the new name to use. If this is null it reverts to using the original field names. Any field name not included in the map is left as the original name.

See Also