Exemplo n.º 1
0
        /// <summary>
        /// Gets the first content-type match for the handler from a list of accepted types
        /// </summary>
        /// <param name="mediaTypeHandler">The content type handler.</param>
        /// <param name="acceptedTypes">The accepted types.</param>
        /// <returns>The MIME content type, or <c>null</c> if no match is found.</returns>
        public static string GetContentType(this IMediaTypeHandler mediaTypeHandler, IList <string> acceptedTypes)
        {
            HashSet <string> contentTypes;

            if (!Cache.TryGetValue(mediaTypeHandler.GetType(), out contentTypes))
            {
                lock (Sync)
                {
                    if (!Cache.TryGetValue(mediaTypeHandler.GetType(), out contentTypes))
                    {
                        contentTypes =
                            new HashSet <string>(
                                MediaTypesAttribute.Get(mediaTypeHandler.GetType()).SelectMany(cta => cta.ContentTypes),
                                StringComparer.OrdinalIgnoreCase);
                        Cache[mediaTypeHandler.GetType()] = contentTypes;
                    }
                }
            }
            return(acceptedTypes.FirstOrDefault(x => ContainsMatchingContentType(contentTypes, x)));
        }
Exemplo n.º 2
0
 /// <summary>
 /// Gets the first content-type match for the handler from a list of accepted types
 /// </summary>
 /// <param name="mediaTypeHandler">The content type handler.</param>
 /// <param name="acceptedTypes">The accepted types.</param>
 /// <returns>The MIME content type, or <c>null</c> if no match is found.</returns>
 public static string GetContentType(this IMediaTypeHandler mediaTypeHandler, IList <string> acceptedTypes)
 {
     return(MediaTypesAttribute.Get(mediaTypeHandler.GetType()).SelectMany(cta => cta.ContentTypes)
            .FirstOrDefault(acceptedTypes.Contains));
 }