System.Yaml.StringUriEncodingExtention.UriEscapeForTag C# (CSharp) 메소드

UriEscapeForTag() 공개 정적인 메소드

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