Create a reference to a named querylet.


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

Syntax

Visual Basic (Declaration)
Public Shared Function Reference( _ 
   ByVal querylet_name As String _ 
) As NetricsQuery
C#
public static NetricsQuery Reference(
   string querylet_name
)
C++
public:
 static NetricsQuery Reference(
   String querylet_name
)
J#
public static NetricsQuery Reference(
   string querylet_name
)
JScript
public static  function Reference(
   querylet_name : String
) : NetricsQuery

Parameters

querylet_name
The name of another querylet.

Return Value

A querylet that refers to another querylet by name.

Remarks

Query references avoid the calculation expense of using identical querylets in multiple places within a query.
As the returned querylet is only a reference, most options (setName, scoreType, etc.) cannot be set on it.

See Also