Exemple #1
0
        public static byte[] UrlEncodeToBytes(byte[] bytes, int offset, int count)
        {
            if (bytes == null)
            {
                return(null);
            }

            return(HttpEncoder.UrlEncodeToBytes(bytes, offset, count));
        }