The body of a PQDIF Record. The body is part of the physical structure of a PQDIF file. It laid out as a hierarchy of Elements, starting with a CollectionElement that contains other elements.
示例#1
0
 /// <summary>
 /// Creates an instance of the <see cref="Record"/> class.
 /// </summary>
 /// <param name="header">The record header.</param>
 /// <param name="body">The record body.</param>
 public Record(RecordHeader header, RecordBody body)
 {
     Header = header;
     Body   = body;
 }
示例#2
0
文件: Record.cs 项目: rmc00/gsf
 /// <summary>
 /// Creates an instance of <see cref="Record"/>.
 /// </summary>
 /// <param name="header">The record header.</param>
 /// <param name="body">The record body.</param>
 public Record(RecordHeader header, RecordBody body)
 {
     Header = header;
     Body = body;
 }