Bloom.ImageProcessing.ImageServer.IsImageTypeThatCanBeReturned C# (CSharp) Method

IsImageTypeThatCanBeReturned() static private method

static private IsImageTypeThatCanBeReturned ( string path ) : bool
path string
return bool
        internal static bool IsImageTypeThatCanBeReturned(string path)
        {
            return _imageExtentions.Contains((Path.GetExtension(path) ?? "").ToLowerInvariant());
        }