mirror of
https://github.com/sphildreth/roadie
synced 2024-11-29 23:50:21 +00:00
13 lines
227 B
C#
13 lines
227 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Text;
|
|||
|
|
|||
|
namespace Roadie.Library.Encoding
|
|||
|
{
|
|||
|
public interface IHttpEncoder
|
|||
|
{
|
|||
|
string UrlEncode(string s);
|
|||
|
string UrlDecode(string s);
|
|||
|
}
|
|||
|
}
|