mirror of
				https://github.com/jellyfin/jellyfin.git
				synced 2025-11-04 03:27:21 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			12 lines
		
	
	
		
			239 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			12 lines
		
	
	
		
			239 B
		
	
	
	
		
			C#
		
	
	
	
	
	
using System.IO;
 | 
						|
 | 
						|
namespace MediaBrowser.Model.IO
 | 
						|
{
 | 
						|
    public interface IMemoryStreamProvider
 | 
						|
    {
 | 
						|
        MemoryStream CreateNew();
 | 
						|
        MemoryStream CreateNew(int capacity);
 | 
						|
        MemoryStream CreateNew(byte[] buffer);
 | 
						|
    }
 | 
						|
}
 |