Edit

Share via


NmeaLogDataReader Constructors

Definition

Overloads

NmeaLogDataReader(String, IEnumerable<Stream>)

Reads a log file and uses it as a source

NmeaLogDataReader(String, IEnumerable<String>)

Reads a log file and uses it as a source

NmeaLogDataReader(String, Stream)

Reads a log file and uses it as a source

NmeaLogDataReader(String, String)

Reads a log file and uses it as a source

NmeaLogDataReader(String, IEnumerable<Stream>)

Reads a log file and uses it as a source

public NmeaLogDataReader (string interfaceName, System.Collections.Generic.IEnumerable<System.IO.Stream> streamsToRead);
new Iot.Device.Nmea0183.NmeaLogDataReader : string * seq<System.IO.Stream> -> Iot.Device.Nmea0183.NmeaLogDataReader
Public Sub New (interfaceName As String, streamsToRead As IEnumerable(Of Stream))

Parameters

interfaceName
String

Name of this interface

streamsToRead
IEnumerable<Stream>

A file stream to read. Either a | delimited log or a plain text file

Applies to

NmeaLogDataReader(String, IEnumerable<String>)

Reads a log file and uses it as a source

public NmeaLogDataReader (string interfaceName, System.Collections.Generic.IEnumerable<string> filesToRead);
new Iot.Device.Nmea0183.NmeaLogDataReader : string * seq<string> -> Iot.Device.Nmea0183.NmeaLogDataReader
Public Sub New (interfaceName As String, filesToRead As IEnumerable(Of String))

Parameters

interfaceName
String

Name of this interface

filesToRead
IEnumerable<String>

Files to read. Either a | delimited log or a plain text file

Applies to

NmeaLogDataReader(String, Stream)

Reads a log file and uses it as a source

public NmeaLogDataReader (string interfaceName, System.IO.Stream streamToRead);
new Iot.Device.Nmea0183.NmeaLogDataReader : string * System.IO.Stream -> Iot.Device.Nmea0183.NmeaLogDataReader
Public Sub New (interfaceName As String, streamToRead As Stream)

Parameters

interfaceName
String

Name of this interface

streamToRead
Stream

A file stream to read. Either a | delimited log or a plain text file

Applies to

NmeaLogDataReader(String, String)

Reads a log file and uses it as a source

public NmeaLogDataReader (string interfaceName, string fileToRead);
new Iot.Device.Nmea0183.NmeaLogDataReader : string * string -> Iot.Device.Nmea0183.NmeaLogDataReader
Public Sub New (interfaceName As String, fileToRead As String)

Parameters

interfaceName
String

Name of this interface

fileToRead
String

File to read. Either a | delimited log or a plain text file

Applies to