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

Syntax

Visual Basic (Declaration)
Public Sub New( _ 
   ByVal name As String,  _ 
   ByVal fieldNames As String(),  _ 
   ByVal src As NetricsTableRecSrc _ 
)
C#
public NetricsTable(
   string name,
   string[] fieldNames,
   NetricsTableRecSrc src
)
C++
public:
 NetricsTable(
   String name,
   array<String>^ fieldNames,
   NetricsTableRecSrc src
) sealed 
J#
public NetricsTable(
   string name,
   string[] fieldNames,
   NetricsTableRecSrc src
)
JScript
public function NetricsTable(
   name : String,
   fieldNames : String[],
   src : NetricsTableRecSrc
)

Parameters

name
The name of the table. Must be unique. In other commands, the table will be referred to by this name
fieldNames
User specified names for the fields of the table. In other commands, fields will be referred to by these names
src
The RecSrc object which holds the records for this table (can be empty to load an empty table)

See Also