NOTE: This constructor is now obsolete.


Create a default CSV Record reader with a key field.


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

Syntax

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

Parameters

filename
The name of the file containing the records.
recKeyFieldNum
The index (zero based) of the field that contains the record key.

Remarks

This is for backward compatibility with previous versions. It is the same as: NetricsCSVRecSrc(new NetricsRecFile(file,recKeyFieldNum)).

See Also