NetricsRecSrc implementation for CSV file records.


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

Syntax

Visual Basic (Declaration)
<GuidAttribute("A649291C-4B89-4c6f-808C-54C852E3C6F9")>
Public Class NetricsCSVRecSrc
    Implements INetricsCSVRecSrc, NetricsTableRecSrc, IDisposable
C#
[GuidAttribute("A649291C-4B89-4c6f-808C-54C852E3C6F9")]
public class NetricsCSVRecSrc : INetricsCSVRecSrc, NetricsTableRecSrc, IDisposable
C++
[GuidAttribute(L"A649291C-4B89-4c6f-808C-54C852E3C6F9")]
ref class NetricsCSVRecSrc : INetricsCSVRecSrc, NetricsTableRecSrc, IDisposable
J#
/** @attribute GuidAttribute("A649291C-4B89-4c6f-808C-54C852E3C6F9") */
public class NetricsCSVRecSrc implements INetricsCSVRecSrc, NetricsTableRecSrc, IDisposable
JScript
public 
   GuidAttribute("A649291C-4B89-4c6f-808C-54C852E3C6F9")
class NetricsCSVRecSrc extends INetricsCSVRecSrc, NetricsTableRecSrc, IDisposable

Remarks

This implements the NetricsRecSrc 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.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