mirror of
				https://github.com/jellyfin/jellyfin.git
				synced 2025-11-03 19:17:24 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			17 lines
		
	
	
		
			473 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			17 lines
		
	
	
		
			473 B
		
	
	
	
		
			C#
		
	
	
	
	
	
using System;
 | 
						|
using System.IO;
 | 
						|
using System.Threading.Tasks;
 | 
						|
using MediaBrowser.Model.Services;
 | 
						|
 | 
						|
namespace MediaBrowser.Controller
 | 
						|
{
 | 
						|
    public interface IResourceFileManager
 | 
						|
    {
 | 
						|
        Task<object> GetStaticFileResult(IRequest request, string basePath, string virtualPath, string contentType, TimeSpan? cacheDuration);
 | 
						|
 | 
						|
        Stream GetResourceFileStream(string basePath, string virtualPath);
 | 
						|
 | 
						|
        string ReadAllText(string basePath, string virtualPath);
 | 
						|
    }
 | 
						|
}
 |