runtime.csharp.IRT.UrlEscaper.cs Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of idealingua-v1-runtime-rpc-csharp_3 Show documentation
Show all versions of idealingua-v1-runtime-rpc-csharp_3 Show documentation
idealingua-v1-runtime-rpc-csharp
using System.Web;
namespace IRT.Transport
{
public static class UrlEscaper
{
public static string Escape(string source)
{
return HttpUtility.UrlEncode(source);
}
public static string UnEscape(string source)
{
return HttpUtility.UrlDecode(source);
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy