/// <summary>
 /// Initializes a new instance of the <see cref="XAMUmpTelegram"/> class.
 /// </summary>
 /// <param name="trace">The trace.</param>
 public XAMUmpVideoStreamTelegram()
     : base()
 {
     StreamFlags = new XAMUmpStreamFlags();
     SequenceID  = 0;
     StartLine   = 0;
     LineCount   = 0;
 }
 /// <summary>
 /// Initializes a new instance of the <see cref="XAMUmpTelegram"/> class.
 /// </summary>
 /// <param name="trace">The trace.</param>
 public XAMUmpVideoStreamTelegram(TraceDelegate trace)
     : base(trace)
 {
     StreamFlags = new XAMUmpStreamFlags();
     SequenceID  = 0;
     StartLine   = 0;
     LineCount   = 0;
 }
 /// <summary>
 /// Initializes a new instance of the <see cref="XAMUmpTelegram"/> class.
 /// </summary>
 /// <param name="trace">The trace.</param>
 public XAMUmpVideoStreamTelegram(XAMUmpStreamFlags streamFlags, int sequenceID, short startLine, short lineCount, byte[] videoData, TraceDelegate trace)
     : base(trace)
 {
     StreamFlags = streamFlags;
     SequenceID  = sequenceID;
     StartLine   = startLine;
     LineCount   = lineCount;
     VideoData   = videoData;
 }