Esempio n. 1
0
 public CustomTagEntry(string path, string vr, CustomTagLevel level, CustomTagStatus status)
 {
     Path   = path;
     VR     = vr;
     Level  = level;
     Status = status;
 }
Esempio n. 2
0
 public CustomTagEntry(long key, string path, string vr, CustomTagLevel level, CustomTagStatus status)
 {
     Key    = key;
     Path   = path;
     VR     = vr;
     Level  = level;
     Status = status;
 }
Esempio n. 3
0
 public static CustomTagStoreEntry BuildCustomTagStoreEntry(this DicomTag tag, long key = 1, CustomTagLevel level = CustomTagLevel.Series, CustomTagStatus status = CustomTagStatus.Reindexing)
 {
     return(new CustomTagStoreEntry(key: key, path: tag.GetPath(), vr: tag.DictionaryEntry.ValueRepresentations[0].Code, level: level, status: status));
 }
Esempio n. 4
0
 public static CustomTagEntry BuildCustomTagEntry(this DicomTag tag, CustomTagLevel level = CustomTagLevel.Series, CustomTagStatus status = CustomTagStatus.Added)
 {
     return(new CustomTagEntry(path: tag.GetPath(), vr: tag.GetDefaultVR()?.Code, level: level, status: status));
 }
Esempio n. 5
0
 public static CustomTagEntry BuildCustomTagEntry(this DicomTag tag, CustomTagLevel level = CustomTagLevel.Series)
 {
     return(new CustomTagEntry(path: tag.GetPath(), vr: tag.DictionaryEntry.ValueRepresentations[0].Code, level: level));
 }
 public CustomTagEntry(string path, string vr, CustomTagLevel level)
 {
     Path  = path;
     VR    = vr;
     Level = level;
 }
Esempio n. 7
0
 private static CustomTagEntry CreateCustomTagEntry(string path, string vr, CustomTagLevel level = CustomTagLevel.Instance, CustomTagStatus status = CustomTagStatus.Added)
 {
     return(new CustomTagEntry(path, vr, level, status));
 }