Update the data item name mappings.


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

Syntax

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

Parameters

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

Return Value

This object for method chaining.

Remarks

This remaps the data item names in the predicate expression. This entirely replaces any previous data item name mappings applied.

See Also