DicomObjects.NET Core Documentation
DicomObjects Namespace / DicomGlobal Class / ValidateFragments Event



In This Topic
    ValidateFragments Event
    In This Topic
    Routine to allow validation (and if necessary, correction) of fragments of compressed pixel data
    Syntax
    'Declaration
     
    
    Public Event ValidateFragments As Action(Of ValidateFragmentsArgs)
    'Usage
     
    
    Dim instance As DicomGlobal
    Dim handler As Action(Of ValidateFragmentsArgs)
     
    AddHandler instance.ValidateFragments, handler
    public event Action<ValidateFragmentsArgs> ValidateFragments
    public:
    event Action<ValidateFragmentsArgs^>^ ValidateFragments
    Remarks

    This is called whenever compressed pixel data read/received, including compressedpixel data within a sequence.

    CloseFilesAfterReading must be set to true if hooking this event.

    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