示例#1
0
 /// <summary>
 /// Initializes a new instance of the <see cref="TextRecordAttribute"/> class.
 /// </summary>
 /// <param name="recordType">Type of the record.</param>
 /// <param name="sequential">Indicates if the properties are sequential</param>
 public TextRecordAttribute(TextRecordType recordType, bool sequential)
 {
     RecordType           = recordType;
     SequentialProperties = sequential;
 }
示例#2
0
 /// <summary>
 /// Initializes a new instance of the <see cref="TextRecordAttribute"/> class.
 /// </summary>
 /// <param name="recordType">Type of the record.</param>
 public TextRecordAttribute(TextRecordType recordType)
 {
     RecordType = recordType;
 }