mirror of
https://github.com/jellyfin/jellyfin.git
synced 2024-11-19 20:09:03 -07: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);
|
|
}
|
|
}
|