System.Yaml.StringUriEncodingExtention.UriEscape C# (CSharp) Method

UriEscape() public static method

Escape the string in URI encoding format.
public static UriEscape ( this s ) : string
s this String to be escaped.
return string
        public static string UriEscape(this string s)
        {
            return UriEncoding.Escape(s);
        }