Edit

Share via


TalkerSentence Constructors

Definition

Overloads

TalkerSentence(NmeaSentence)

Constructs a message from a typed sentence

TalkerSentence(TalkerId, SentenceId, IEnumerable<String>)

Constructs NMEA0183 talker identifier

TalkerSentence(NmeaSentence)

Constructs a message from a typed sentence

public TalkerSentence (Iot.Device.Nmea0183.Sentences.NmeaSentence sentence);
new Iot.Device.Nmea0183.TalkerSentence : Iot.Device.Nmea0183.Sentences.NmeaSentence -> Iot.Device.Nmea0183.TalkerSentence
Public Sub New (sentence As NmeaSentence)

Parameters

sentence
NmeaSentence

Sentence to send. It must be valid

Applies to

TalkerSentence(TalkerId, SentenceId, IEnumerable<String>)

Constructs NMEA0183 talker identifier

public TalkerSentence (Iot.Device.Nmea0183.TalkerId talkerId, Iot.Device.Nmea0183.SentenceId sentenceId, System.Collections.Generic.IEnumerable<string> fields);
new Iot.Device.Nmea0183.TalkerSentence : Iot.Device.Nmea0183.TalkerId * Iot.Device.Nmea0183.SentenceId * seq<string> -> Iot.Device.Nmea0183.TalkerSentence
Public Sub New (talkerId As TalkerId, sentenceId As SentenceId, fields As IEnumerable(Of String))

Parameters

talkerId
TalkerId

NMEA0183 talker identifier of the device sending the sentence

sentenceId
SentenceId

NMEA0183 sentence identifier

fields
IEnumerable<String>

fields related to the sentence

Applies to