Castle.MonoRail.Framework.Test.MockServerUtility.UrlDecode C# (CSharp) Method

UrlDecode() public method

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