mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-12-20 23:23:50 +01:00
14 lines
360 B
C#
14 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);
|
|
}
|
|
}
|