mirror of
https://github.com/jellyfin/jellyfin.git
synced 2024-11-18 11:29:18 -07:00
15 lines
360 B
C#
15 lines
360 B
C#
using System.IO;
|
|
using System.Text;
|
|
|
|
namespace MediaBrowser.Model.Text
|
|
{
|
|
public interface ITextEncoding
|
|
{
|
|
Encoding GetASCIIEncoding();
|
|
|
|
string GetDetectedEncodingName(byte[] bytes, string language);
|
|
Encoding GetDetectedEncoding(byte[] bytes, string language);
|
|
Encoding GetEncodingFromCharset(string charset);
|
|
}
|
|
}
|