I'm using the StorageScu class to send DICOM images. Unfortunately I've (many) DICOM files that are NOT in part 10 format, and it seems like StorageScu will (only?) send DICOM part 10 files.
I can still open the DICOM files using "dicomFile.Load(DicomReadOptions.Default)" and process it as normal, but opening it with DicomReadOptions.DoNotStorePixelDataInDataSet will throw an exception as it is not DICOM part 10 format file.
How can I force the StorageScu to send non part 10 files? And what is the difference in loading a file with DicomReadOptions.Default, ReadNonPart10Files, and DoNotStorePixelDataInDataSet?