Encog.Util.HTTP.FormUtility.Encode C# (CSharp) Method

Encode() public static method

Encode the specified string. This encodes all special characters.
public static Encode ( String str ) : String
str String The string to encode.
return String
        public static String Encode(String str)
        {
            //return HttpUtility.HtmlEncode(str);
            return str;
        }