/
githubmirror
/
aspnetcore
Обзор
Документация
Войти
/
githubmirror
/
aspnetcore
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
src/Servers/Kestrel/shared/test/StringExtensions.cs
22 строки
625 B
William Godbe
Rename Microsoft.Aspnetcore.Testing to Microsoft.AspNetCore.InternalTesting (#51713)
02 ноя 2023, 03:15
Не верифицирован
02 ноя 2023, 03:15
fc8deca
Код
Авторство
О чём код?
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. using System; namespace Microsoft.AspNetCore.InternalTesting; public static class StringExtensions { public static string EscapeNonPrintable(this string s) { var ellipsis = s.Length > 128 ? "..." : string.Empty; return s.Substring(0, Math.Min(128, s.Length)) .Replace("\r", @"\x0D") .Replace("\n", @"\x0A") .Replace("\0", @"\x00") .Replace("\x80", @"\x80") + ellipsis; } }