Castle.MonoRail.Framework.Test.MockServerUtility.UrlDecode C# (CSharp) 메소드

UrlDecode() 공개 메소드

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