Enum FileReadOption
Option for reading a DICOM file from a stream
Namespace: Dicom
Assembly: cs.temp.dll.dll
Syntax
public enum FileReadOption
Fields
Name | Description |
---|---|
Default | Default behaviour. |
ReadAll | Read all tags so that the stream can be closed. |
ReadLargeOnDemand | Reads only small tags, but keeps the stream to read the large tags on demand. The stream has to stay open. |
SkipLargeTags | Large tags are not read. The stream can be closed. |