DicomJsonNumberHandling

DicomJsonNumberHandling enumeration

Determines how the DICOM numbers (VR: IS, DS, SV and UV) should be handled when serializing and deserializing.

public enum DicomJsonNumberHandling

Values

NameValueDescription
AsNumber0Serialize DICOM numbers (VR: IS, DS, SV and UV) as JSON numbers. FormatException will be thrown when a number can’t be parsed! For example:
AsString1Serialize DICOM numbers (VR: IS, DS, SV and UV) as JSON strings. For example:

See Also