Read a single logical CSV record.


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

Syntax

Visual Basic (Declaration)
Public Function readRecord() As String() _
    Implements NetricsFieldedReader.readRecord
C#
public string[] readRecord()
C++
public:
 array<String>^ readRecord() sealed 
J#
public string[] readRecord()
JScript
public  function readRecord() : String[]

Return Value

An array of strings representing the fields fo the CSV record. Returns null on EOF.

Implements

NetricsFieldedReader.readRecord

Remarks

This reads a CSV record, which could be more than one physical line in the file.

See Also