DicomObjects.NET.8.48 Documentation
DicomObjects Namespace / DicomDataSet Class / ValidateAll Method / ValidateAll() Method






In This Topic
    ValidateAll() Method
    In This Topic
    Validate all DicomAttributes within the DicomDataset
    Syntax
    'Declaration
     
    
    <System.ObsoleteAttribute("Use ValidateAll overload with ValidateOptions parameter for refined results")>
    Public Overloads Function ValidateAll() As System.Collections.Generic.List(Of DicomValidationException)
    'Usage
     
    
    Dim instance As DicomDataSet
    Dim value As System.Collections.Generic.List(Of DicomValidationException)
     
    value = instance.ValidateAll()
    [System.Obsolete("Use ValidateAll overload with ValidateOptions parameter for refined results")]
    public System.Collections.Generic.List<DicomValidationException> ValidateAll()
    public function ValidateAll(): System.Collections.Generic.List; 
    System.ObsoleteAttribute("Use ValidateAll overload with ValidateOptions parameter for refined results")
    public function ValidateAll() : System.Collections.Generic.List;
    [System.Obsolete("Use ValidateAll overload with ValidateOptions parameter for refined results")]
    public: System.Collections.Generic.List<DicomValidationException*>* ValidateAll(); 
    [System.Obsolete("Use ValidateAll overload with ValidateOptions parameter for refined results")]
    public:
    System.Collections.Generic.List<DicomValidationException^>^ ValidateAll(); 

    Return Value

    a list of validation errors as DicomValidationException objects
    Remarks
    If there are no errors, then an empty list (not null) is returned
    Requirements

    Target Platforms: .NET CLR 4.8 or higher

    See Also