System.Uri.EscapeUnescapeIri C# (CSharp) Method

EscapeUnescapeIri() private method

private EscapeUnescapeIri ( string input, int start, int end, UriComponents component ) : string
input string
start int
end int
component UriComponents
return string
        internal unsafe string EscapeUnescapeIri(string input, int start, int end, UriComponents component)
        {
            fixed (char* pInput = input)
            {
                return IriHelper.EscapeUnescapeIri(pInput, start, end, component);
            }
        }