mirror of
https://github.com/sphildreth/roadie
synced 2024-11-10 06:44:12 +00:00
15 lines
No EOL
291 B
C#
15 lines
No EOL
291 B
C#
namespace Roadie.Library.Encoding
|
|
{
|
|
public interface IHttpEncoder
|
|
{
|
|
string HtmlEncode(string s);
|
|
|
|
string UrlDecode(string s);
|
|
|
|
string UrlEncode(string s);
|
|
|
|
string UrlEncodeBase64(byte[] input);
|
|
|
|
string UrlEncodeBase64(string input);
|
|
}
|
|
} |