System.Uri.EscapeUnescapeIri C# (CSharp) Метод

EscapeUnescapeIri() приватный Метод

private EscapeUnescapeIri ( string input, int start, int end, UriComponents component ) : string
input string
start int
end int
component UriComponents
Результат string
        internal unsafe string EscapeUnescapeIri(string input, int start, int end, UriComponents component)
        {
            fixed (char* pInput = input)
            {
                return IriHelper.EscapeUnescapeIri(pInput, start, end, component);
            }
        }