Fixed ToString() for RCS2 Linkage Descriptor.
Some checks failed
🚀 Pack skyscraper8 / make-zip (push) Failing after 1m59s
Some checks failed
🚀 Pack skyscraper8 / make-zip (push) Failing after 1m59s
This commit is contained in:
parent
7e7a3f86dd
commit
1938cb169c
@ -64,19 +64,11 @@ namespace skyscraper5.src.InteractionChannel.Model.Descriptors
|
||||
|
||||
public override string ToString()
|
||||
{
|
||||
StringBuilder sb = new StringBuilder();
|
||||
sb.Append("ONID {0}, TSID {1}", OriginalNetworkId, TransportStreamId);
|
||||
|
||||
if (PopulationIds != null)
|
||||
{
|
||||
for (int i = 0; i < PopulationIds.Length; i++)
|
||||
{
|
||||
sb.Append(", ({0},{1})", PopulationIds[i].Base, PopulationIds[i].Mask);
|
||||
}
|
||||
}
|
||||
return sb.ToString();
|
||||
return String.Format("Link type {0}", LinkageType);
|
||||
}
|
||||
|
||||
|
||||
|
||||
public DatabaseKeyRmtLinkage ToKey()
|
||||
{
|
||||
return new DatabaseKeyRmtLinkage(TransportStreamId, OriginalNetworkId, ServiceId, LinkageType, InteractiveNetworkId);
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user