System.Yaml.StringUriEncodingExtention.UriUnescape C# (CSharp) Méthode

UriUnescape() public static méthode

Unescape the string escaped in URI encoding format.
public static UriUnescape ( this s ) : string
s this String to be unescape.
Résultat string
        public static string UriUnescape(this string s)
        {
            return UriEncoding.Unescape(s);
        }