예제 #1
0
            private static string GetPresentationIntent(Sop sop)
            {
                DicomAttribute attribute;

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