Define a default CSV file record source.


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

Syntax

Visual Basic (Declaration)
Public Sub New( _ 
   ByVal fileName As String,  _ 
   ByVal keyIndex As Integer _ 
)
C#
public NetricsRecFile(
   string fileName,
   int keyIndex
)
C++
public:
 NetricsRecFile(
   String fileName,
   int keyIndex
) sealed 
J#
public NetricsRecFile(
   string fileName,
   int keyIndex
)
JScript
public function NetricsRecFile(
   fileName : String,
   keyIndex : int
)

Parameters

fileName
The name of the file containing the records.
keyIndex
If this is non-negative it defines the index (0 based) of the key field in the file records.

Remarks

This is the same as:

NetricsRecFile(fileName,null,false,false,-1,true,false,keyIndex,null)

See Also