Castle.MonoRail.Framework.Test.MockServerUtility.UrlDecode C# (CSharp) Méthode

UrlDecode() public méthode

URL decodes a string and returns the decoded string.
public UrlDecode ( string content ) : string
content string The text to URL decode.
Résultat string
		public virtual string UrlDecode(string content)
		{
			return content.Replace("&amp", "&");
		}