NetricsTableRecSrc implementation for CSV file records.


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

Syntax

Visual Basic (Declaration)
Public Class NetricsCSVRecSrc
    Inherits NetricsTableRecSrc
    Implements IDisposable
C#
public class NetricsCSVRecSrc : NetricsTableRecSrc, IDisposable
C++
ref class NetricsCSVRecSrc : NetricsTableRecSrc, IDisposable
J#
public class NetricsCSVRecSrc extends NetricsTableRecSrc implements IDisposable
JScript
public class NetricsCSVRecSrc extends NetricsTableRecSrc, IDisposable

Remarks

This implements the NetricsTableRecSrc interface for CSV format files. It reads CSV format records and converts them into NetricsRecord objects. It handles the same CSV format, including various variety of header records and record keys, as the server side read of CSV record data. See NetricsRecFile for more info on CSV formats.

Inheritance Hierarchy

System.Object
   NetricsServerInterface.NetricsTableRecSrc
      NetricsServerInterface.NetricsCSVRecSrc

Thread Safety

Public static (Shared in Visual Basic)staticShared members of this type are safe for multithreaded operations. Instance members are not guaranteed to be thread-safe.

See Also