DicomObjects.NET8 Documentation
DicomObjects.Enums Namespace / ParseOptions Enumeration



In This Topic
    ParseOptions Enumeration
    In This Topic
    Controls how DicomObjects parse Dicom Data to Json and XML for and methods
    Syntax
    'Declaration
     
    
    Public Enum ParseOptions 
       Inherits System.Enum
    'Usage
     
    
    Dim instance As ParseOptions
    public enum ParseOptions : System.Enum 
    public enum class ParseOptions : public System.Enum 
    Members
    MemberDescription
    ParseNoThrow Try parsing DICOM data to the correct type based on the VR of the tag - conversion error will be ignore and attribute with invalid value will be excluded in the output Json or XML
    ParseNoThrowAsString Attempt to parse DICOM data to the correct type, if a formatting error is encountered, the invalid value will be included as a string in the output JSON or XML, rather than being excluded.
    ParseThrow Parse DICOM data to the correct type based on the VR of the tag - conversion error will be thrown
    String No parsing - use the string representation of the DICOM data for output value - any DICOM attribute with invalid value will be included in the output Json or XML
    Inheritance Hierarchy

    System.Object
       System.ValueType
          System.Enum
             DicomObjects.Enums.ParseOptions

    Requirements

    Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

    See Also