System.Uri.EscapeUnescapeIri C# (CSharp) Méthode

EscapeUnescapeIri() private méthode

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