示例#1
0
 public BaseComponent(Hl7Encoding encoding) : base(encoding)
 {
 }
示例#2
0
 public Message(IEnumerable <SegmentCollection> segments, Hl7Encoding encoding) : base(encoding) =>
示例#3
0
 public SimpleComponent(string value, Hl7Encoding encoding) : base(encoding) => this.value = value;
示例#4
0
 public BaseField(Hl7Encoding encoding) : base(encoding)
 {
 }
示例#5
0
 public ValueField(string value, Hl7Encoding encoding) : base(encoding) => this.value = value;
示例#6
0
 public DelimitersField(Hl7Encoding encoding) : base(encoding)
 {
 }
示例#7
0
        public string?Id => GetIdInternal(FieldList);        //identifier of the segment (for most segment types). this is the second value in the segment after the name.

        internal BaseSegment(Hl7Encoding encoding, string name, IEnumerable <BaseField> fieldList) : base(encoding) =>
            (Name, FieldList) = (name, fieldList.ToImmutableList());