private static string GetPresentationIntent(Sop sop) { DicomAttribute attribute; if (sop.TryGetAttribute(DicomTags.PresentationIntentType, out attribute)) { return((attribute.ToString() ?? string.Empty).ToUpperInvariant()); } return(string.Empty); }