In This Topic
Routine to allow validation (and if necessary, correction) of fragments of compressed pixel data
Syntax
'Declaration
Public Event ValidateFragments As System.Action(Of ValidateFragmentsArgs)
'Usage
Dim instance As DicomGlobal
Dim handler As System.Action(Of ValidateFragmentsArgs)
AddHandler instance.ValidateFragments, handler
public event System.Action<ValidateFragmentsArgs> ValidateFragments
public event ValidateFragments: System.Action;
In JScript, you can handle the events defined by another class, but you cannot define your own.
public: __event System.Action<ValidateFragmentsArgs*>* ValidateFragments
public:
event System.Action<ValidateFragmentsArgs^>^ ValidateFragments
Requirements
Target Platforms: .NET CLR 4.8 or higher
See Also