Get the fully mapped predicate expression.


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

Syntax

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

Parameters

data_values
A mapping where the key is the mapped data item name, and the value is the value for that data item.

Return Value

The fully mapped predicate expression.

Remarks

This applies the data value mappings, and the escaping of $\ values. The returned string has all of the currently defined field name mappings applied. Data items that do not appear in the given data_values map are assigned the default value.

Data values inserted into predicate string constants have the special characters: &, ", \n and \0 encoded as &amp;, &quot;, &#10; and &#0; respectively.

See Also