/// <summary> /// Creates this DICOM value length instance from specified DICOM /// output stream using specified DICOM VR. /// </summary> public ValueLength(Stream stream, ValueRepresentation vr) : this(vr) { LoadFrom(stream); }
public ValueLength(ValueRepresentation vr) { this.vr = vr; }
public ValueLength(ValueRepresentation vr, int length) : this(vr) { this.length = length; }
/// <summary> /// Re-creates this DICOM value length instance from specified DICOM /// output stream using specified DICOM VR and value length. /// </summary> public Value(Stream stream, ValueRepresentation vr, ValueLength length) : this(vr, length) { LoadFrom(stream); }
public Value(ValueRepresentation vr, ValueLength length, Array multiValue) : this(vr, length) { Add(multiValue); }
public Value(ValueRepresentation vr, ValueLength length, object value) : this(vr, length) { Add(value); }
public Value(ValueRepresentation vr, ValueLength length) { this.vr = vr; valueLength = length; }