2019-01-13 19:26:15 +00:00
|
|
|
|
using System.Text;
|
2018-12-27 23:27:57 +00:00
|
|
|
|
|
|
|
|
|
namespace MediaBrowser.Model.Text
|
|
|
|
|
{
|
|
|
|
|
public interface ITextEncoding
|
|
|
|
|
{
|
|
|
|
|
Encoding GetASCIIEncoding();
|
|
|
|
|
|
|
|
|
|
string GetDetectedEncodingName(byte[] bytes, int size, string language, bool enableLanguageDetection);
|
|
|
|
|
Encoding GetDetectedEncoding(byte[] bytes, int size, string language, bool enableLanguageDetection);
|
|
|
|
|
Encoding GetEncodingFromCharset(string charset);
|
|
|
|
|
}
|
|
|
|
|
}
|