mirror of
https://github.com/sphildreth/roadie
synced 2024-11-29 07:30:21 +00:00
32 lines
No EOL
615 B
C#
32 lines
No EOL
615 B
C#
using System;
|
|
|
|
namespace Roadie.Library.Encoding
|
|
{
|
|
public class DummyHttpEncoder : IHttpEncoder
|
|
{
|
|
public string HtmlEncode(string s)
|
|
{
|
|
return s;
|
|
}
|
|
|
|
public string UrlDecode(string s)
|
|
{
|
|
return s;
|
|
}
|
|
|
|
public string UrlEncode(string s)
|
|
{
|
|
return s;
|
|
}
|
|
|
|
public string UrlEncodeBase64(byte[] input)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
|
|
public string UrlEncodeBase64(string input)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
}
|
|
} |