DicomCommandType Enumeration (original) (raw)
Summary
Represents the possible Command Set types.
Syntax
C#
Objective-C
C++/CLI
Java
public enum DicomCommandType
typedef NS_ENUM(NSInteger, LTDicomCommandType) {
LTDicomCommandTypeUndefined = 0,
LTDicomCommandTypeCStore = 0x0001,
LTDicomCommandTypeCFind = 0x0020,
LTDicomCommandTypeCGet = 0x0010,
LTDicomCommandTypeCMove = 0x0021,
LTDicomCommandTypeCCancel = 0x0FFF,
LTDicomCommandTypeCEcho = 0x0030,
LTDicomCommandTypeNReport = 0x0100,
LTDicomCommandTypeNGet = 0x0110,
LTDicomCommandTypeNSet = 0x0120,
LTDicomCommandTypeNAction = 0x0130,
LTDicomCommandTypeNCreate = 0x0140,
LTDicomCommandTypeNDelete = 0x0150,
};
public enum DicomCommandType
public enum class DicomCommandType
Members
Value | Member | Description |
---|---|---|
0 | Undefined | Undefined. |
1 | CStore | Composite Store Command. |
16 | CGet | Composite Get Command. |
32 | CFind | Composite Find Command. |
33 | CMove | Composite Move Command. |
48 | CEcho | Composite Echo Command. |
256 | NReport | Normalized Report Command. |
272 | NGet | Normalized Get Command. |
288 | NSet | Normalized Set Command. |
304 | NAction | Normalized Action Command. |
320 | NCreate | Normalized Create Command. |
336 | NDelete | Normalized Delete Command. |
4095 | CCancel | Composite Cancel Command. |