mirror of
https://github.com/jellyfin/jellyfin.git
synced 2024-11-16 18:42:52 -07:00
18 lines
387 B
C#
18 lines
387 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using MediaBrowser.Model.Text;
|
|
|
|
namespace SocketHttpListener.Primitives
|
|
{
|
|
public static class TextEncodingExtensions
|
|
{
|
|
public static Encoding GetDefaultEncoding(this ITextEncoding encoding)
|
|
{
|
|
return Encoding.UTF8;
|
|
}
|
|
}
|
|
}
|