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

UrlEncode() public method

URL encodes a string and returns the encoded string.
public UrlEncode ( string content ) : string
content string The text to URL encode.
return string
		public virtual string UrlEncode(string content)
		{
			return content.Replace("&", "&");
		}