mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-05-30 19:55:08 -04:00
13 lines
276 B
C#
13 lines
276 B
C#
using System.Text;
|
|
|
|
namespace MediaBrowser.Model.TextEncoding
|
|
{
|
|
public interface IEncoding
|
|
{
|
|
byte[] GetASCIIBytes(string text);
|
|
string GetASCIIString(byte[] bytes, int startIndex, int length);
|
|
|
|
Encoding GetFileEncoding(string path);
|
|
}
|
|
}
|